예제 #1
0
 public MutateInOptions StoreSemantics(StoreSemantics storeSemantics)
 {
     StoreSemanticsValue = storeSemantics;
     return(this);
 }
 private MutateInOptions GetMutateInOptions(StoreSemantics storeSemantics) => new MutateInOptions().Defaults(_durability, _keyValueTimeout)
 .StoreSemantics(storeSemantics);
예제 #3
0
 public MutateInOptions WithStoreSemantics(StoreSemantics storeSemantics)
 {
     StoreSemantics |= storeSemantics;
     return(this);
 }
예제 #4
0
 private MutateInOptions GetMutateInOptions(StoreSemantics storeSemantics) => new MutateInOptions().Defaults(_durability, _keyValueTimeout)
 .Serializer(DefaultSerializer)
 .Transcoder(DefaultTranscoder)
 .StoreSemantics(storeSemantics);
예제 #5
0
 private MutateInOptions GetMutateOpts(StoreSemantics storeSemantics) => new MutateInOptions()
 .Defaults(_atrDurability, _overallContext.Config.KeyValueTimeout)
 .Serializer(DefaultSerializer)
 .Transcoder(DefaultTranscoder)
 .StoreSemantics(storeSemantics);