AerospikeResponsePayload Class

The request message containing the user's name.

Definition

Namespace: Aerospike.Client.KVS
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.0
C#
public sealed class AerospikeResponsePayload : IMessage<AerospikeResponsePayload>, 
	IMessage, IEquatable<AerospikeResponsePayload>, IDeepCloneable<AerospikeResponsePayload>, 
	IBufferMessage
Inheritance
Object    AerospikeResponsePayload
Implements
IBufferMessage, IDeepCloneableAerospikeResponsePayload, IMessage, IMessageAerospikeResponsePayload, IEquatableAerospikeResponsePayload

Constructors

AerospikeResponsePayloadInitializes a new instance of the AerospikeResponsePayload class
AerospikeResponsePayload(AerospikeResponsePayload)Initializes a new instance of the AerospikeResponsePayload class

Properties

BackgroundTaskStatus Background task status, populated for background task request.
Descriptor 
HasBackgroundTaskStatusGets whether the "backgroundTaskStatus" field is set
HasNext For requests with multiple responses like batch and queries, hasNext flag indicates if there are more responses to follow this response or if this is the last response for this request.
Id Unique identifier of the corresponding request in the stream.
InDoubt This flag indicates that the write transaction may have completed, even though the client sees an error.
Parser 
Payload Aerospike wire format request payload.
Status Status of the corresponding request. if status equals 0 The proxy received a valid response from Aerospike. The payload's result code should be used as the client result code. else The request failed at the proxy. This status should be used as the client result code.

Methods

Fields

BackgroundTaskStatusFieldNumberField number for the "backgroundTaskStatus" field.
HasNextFieldNumberField number for the "hasNext" field.
IdFieldNumberField number for the "id" field.
InDoubtFieldNumberField number for the "inDoubt" field.
PayloadFieldNumberField number for the "payload" field.
StatusFieldNumberField number for the "status" field.

See Also