Class VerifyingLockFactory
A LockFactory that wraps another LockFactory and verifies that each lock obtain/release is "correct" (never results in two processes holding the lock at the same time). It does this by contacting an external server (LockVerifyServer) to assert that at most one process holds the lock at a time. To use this, you should also run LockVerifyServer on the host & port matching what you pass to the constructor.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Lucene.Net.Store
Assembly: Lucene.Net.dll
Syntax
public class VerifyingLockFactory : LockFactory
Constructors
| Improve this Doc View SourceVerifyingLockFactory(LockFactory, Stream)
Creates a new VerifyingLockFactory instance.
Declaration
public VerifyingLockFactory(LockFactory lf, Stream stream)
Parameters
Type | Name | Description |
---|---|---|
LockFactory | lf | the LockFactory that we are testing |
System.IO.Stream | stream | the socket's stream input/output to LockVerifyServer |
Methods
| Improve this Doc View SourceClearLock(String)
Declaration
public override void ClearLock(string lockName)
Parameters
Type | Name | Description |
---|---|---|
System.String | lockName |
Overrides
| Improve this Doc View SourceMakeLock(String)
Declaration
public override Lock MakeLock(string lockName)
Parameters
Type | Name | Description |
---|---|---|
System.String | lockName |
Returns
Type | Description |
---|---|
Lock |