QueryResponse

class QueryResponse(    val respondingTo: String,     val data: IMessageBufferReader,     val tag: String,     val final: Boolean)

QueryResponse is a message containing the response to an Query sent by the other side of the connection.

Constructors

Link copied to clipboard
fun QueryResponse(    respondingTo: String,     data: IMessageBufferReader,     tag: String,     final: Boolean)

Construct a QueryResponse.

Properties

Link copied to clipboard
val data: IMessageBufferReader

A ByteBuffer representation of the data in the Query

Link copied to clipboard
val final: Boolean

Indicates that this is the final message in a series

Link copied to clipboard
val respondingTo: String

The message id of the original query

Link copied to clipboard
val tag: String

A string which helps identify the content of the Query