| D | StreamMutationOpener.java | 59 @Nullable private LockFileOpener locking = null; field in StreamMutationOpener 69 * Enable exclusive locking with this opener. This is useful if multiple processes or threads need 73 public StreamMutationOpener withLocking(LockFileOpener locking) { in withLocking() argument 74 this.locking = locking; in withLocking() 88 return new Mutator(openContext, locking, behaviors); in open() 99 OpenContext openContext, @Nullable LockFileOpener locking, @Nullable Behavior[] behaviors) in Mutator() argument 103 if (locking != null) { in Mutator() 104 lock = locking.open(openContext); in Mutator()
|