data class Request<T>
(source)
A data request handle, matching the connection on which the request was made.
connectionId
- the identifier of the connection
handle
- the handle to the request completion
data
- data associated with the request
<init> |
A data request handle, matching the connection on which the request was made. Request(connectionId: String, handle: CompletableAsyncResult<T>, data: Any) |
connectionId |
the identifier of the connection val connectionId: String |
data |
data associated with the request val data: Any |
handle |
the handle to the request completion val handle: CompletableAsyncResult<T> |