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