public override void SetLock(IndexLockMode mode)
 {
     throw new NotSupportedException($"Index with etag {Etag} is in-memory implementation of a faulty index", _e);
 }
 public ChangeLockOfIndexCommand(string name, IndexLockMode lockMode)
 {
     this.name = name;
     this.lockMode = lockMode;
 }
 public SetIndexLockCommand(string name, IndexLockMode mode, string databaseName)
     : base(databaseName)
 {
     IndexName = name;
     LockMode  = mode;
 }