KVSKVSClientWriteStreaming(Metadata, NullableDateTime, CancellationToken) Method

Process a stream of single record write requests.

Definition

Namespace: Aerospike.Client.KVS
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.0
C#
public virtual AsyncDuplexStreamingCall<AerospikeRequestPayload, AerospikeResponsePayload> WriteStreaming(
	Metadata headers = null,
	DateTime? deadline = null,
	CancellationToken cancellationToken = default
)

Parameters

headers  Metadata  (Optional)
The initial metadata to send with the call. This parameter is optional.
deadline  NullableDateTime  (Optional)
An optional deadline for the call. The call will be cancelled if deadline is hit.
cancellationToken  CancellationToken  (Optional)
An optional token for canceling the call.

Return Value

AsyncDuplexStreamingCallAerospikeRequestPayload, AerospikeResponsePayload
The call object.

See Also