tuweni / org.apache.tuweni.devp2p.eth / Request

Request

data class Request<T> (source)

A data request handle, matching the connection on which the request was made.

Parameters

connectionId - the identifier of the connection

handle - the handle to the request completion

data - data associated with the request

Constructors

<init>

A data request handle, matching the connection on which the request was made.

Request(connectionId: String, handle: CompletableAsyncResult<T>, data: Any)

Properties

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>