class ApplicationReceiveRequest
Represents a subject for ApplicationReceivePipeline
typeInfo
- specifies the desired type for a receiving operation
value
- specifies current value being processed by the pipeline
reusableValue
- indicates whether the value instance can be reused. For example, a stream can't.
ApplicationReceiveRequest(type: KClass<*>, value: Any) ApplicationReceiveRequest(typeInfo: KType, value: Any, reusableValue: Boolean = false)
Represents a subject for ApplicationReceivePipeline |
val reusableValue: Boolean
indicates whether the value instance can be reused. For example, a stream can't. |
|
val
Star projected class computed from typeInfo |
|
val typeInfo: KType
specifies the desired type for a receiving operation |
|
val value: Any
specifies current value being processed by the pipeline |