The NativeFSLockFactory type exposes the following members.

Constructors

  NameDescription
Public methodNativeFSLockFactory()()()()
Create a NativeFSLockFactory instance, with null (unset) lock directory. When you pass this factory to a {@link FSDirectory} subclass, the lock directory is automatically set to the directory itsself. Be sure to create one instance for each directory your create!
Public methodNativeFSLockFactory(DirectoryInfo)
Create a NativeFSLockFactory instance, storing lock files into the specified lockDir:
Public methodNativeFSLockFactory(FileInfo) Obsolete.
Create a NativeFSLockFactory instance, storing lock files into the specified lockDir:
Public methodNativeFSLockFactory(String)
Create a NativeFSLockFactory instance, storing lock files into the specified lockDirName:

Methods

  NameDescription
Public methodClearLock (Overrides LockFactory..::..ClearLock(String).)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetLockDir
Retrieve the lock directory.
(Inherited from FSLockFactory.)
Public methodGetLockPrefix
Get the prefix in use for all locks created in this LockFactory.
(Inherited from LockFactory.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodMakeLock (Overrides LockFactory..::..MakeLock(String).)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodSetLockDir
Set the lock directory. This method can be only called once to initialize the lock directory. It is used by {@link FSDirectory} to set the lock directory to itsself. Subclasses can also use this method to set the directory in the constructor.
(Inherited from FSLockFactory.)
Public methodSetLockPrefix
Set the prefix in use for all locks created in this LockFactory. This is normally called once, when a Directory gets this LockFactory instance. However, you can also call this (after this instance is assigned to a Directory) to override the prefix in use. This is helpful if you're running Lucene on machines that have different mount points for the same shared directory.
(Inherited from LockFactory.)
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)

Fields

  NameDescription
Protected fieldlockDir
Directory for the lock files.
(Inherited from FSLockFactory.)
Protected fieldlockPrefix (Inherited from LockFactory.)

See Also