public AsyncBatchCommand(AsyncBatchExecutor parent, AsyncCluster cluster, BatchNode batch, BatchPolicy batchPolicy) : base(parent, cluster, batchPolicy, (AsyncNode)batch.node) { this.parent = parent; this.batch = batch; this.batchPolicy = batchPolicy; }
public AsyncBatchCommand(AsyncBatchCommand other) : base(other) { this.parent = other.parent; this.batch = other.batch; this.batchPolicy = other.batchPolicy; this.sequenceAP = other.sequenceAP; this.sequenceSC = other.sequenceSC; }
public AsyncBatchReadListCommand ( AsyncBatchExecutor parent, AsyncCluster cluster, BatchNode batch, BatchPolicy batchPolicy, List <BatchRead> records ) : base(parent, cluster, batch, batchPolicy) { this.records = records; }
public AsyncBatchExistsSequenceCommand ( AsyncBatchExecutor parent, AsyncCluster cluster, BatchNode batch, BatchPolicy batchPolicy, Key[] keys, ExistsSequenceListener listener ) : base(parent, cluster, batch, batchPolicy) { this.keys = keys; this.listener = listener; }
public AsyncBatchExistsArrayCommand ( AsyncBatchExecutor parent, AsyncCluster cluster, BatchNode batch, BatchPolicy batchPolicy, Key[] keys, bool[] existsArray ) : base(parent, cluster, batch, batchPolicy) { this.keys = keys; this.existsArray = existsArray; }
public AsyncBatchReadSequenceCommand ( AsyncBatchExecutor parent, AsyncCluster cluster, BatchNode batch, BatchPolicy batchPolicy, BatchSequenceListener listener, List <BatchRead> records ) : base(parent, cluster, batch, batchPolicy) { this.listener = listener; this.records = records; }
public AsyncBatchGetSequenceCommand ( AsyncBatchExecutor parent, AsyncCluster cluster, BatchNode batch, BatchPolicy batchPolicy, Key[] keys, string[] binNames, RecordSequenceListener listener, int readAttr ) : base(parent, cluster, batch, batchPolicy) { this.keys = keys; this.binNames = binNames; this.listener = listener; this.readAttr = readAttr; }
public AsyncBatchGetArrayCommand ( AsyncBatchExecutor parent, AsyncCluster cluster, BatchNode batch, BatchPolicy batchPolicy, Key[] keys, string[] binNames, Record[] records, int readAttr ) : base(parent, cluster, batch, batchPolicy) { this.keys = keys; this.binNames = binNames; this.records = records; this.readAttr = readAttr; }