コード例 #1
0
 /// <summary>
 /// Copy write policy from another write policy.
 /// </summary>
 public WritePolicy(WritePolicy other)
     : base(other)
 {
     this.recordExistsAction = other.recordExistsAction;
     this.generationPolicy   = other.generationPolicy;
     this.commitLevel        = other.commitLevel;
     this.generation         = other.generation;
     this.expiration         = other.expiration;
 }
コード例 #2
0
 /// <summary>
 /// Copy write policy from another write policy.
 /// </summary>
 public WritePolicy(WritePolicy other)
     : base(other)
 {
     this.recordExistsAction = other.recordExistsAction;
     this.generationPolicy = other.generationPolicy;
     this.commitLevel = other.commitLevel;
     this.generation = other.generation;
     this.expiration = other.expiration;
 }
コード例 #3
0
 /// <summary>
 /// Copy write policy from another write policy.
 /// </summary>
 public WritePolicy(WritePolicy other)
     : base(other)
 {
     this.recordExistsAction = other.recordExistsAction;
     this.generationPolicy   = other.generationPolicy;
     this.commitLevel        = other.commitLevel;
     this.generation         = other.generation;
     this.expiration         = other.expiration;
     this.respondAllOps      = other.respondAllOps;
     this.durableDelete      = other.durableDelete;
 }