ApplicationReceiveRequest

class ApplicationReceiveRequest(typeInfo: KType, value: Any, reusableValue: Boolean)

Represents a subject for ApplicationReceivePipeline

Parameters

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.

Constructors

Link copied to clipboard
fun ApplicationReceiveRequest(type: KClass<*>, value: Any)
Link copied to clipboard
fun ApplicationReceiveRequest(typeInfo: KType, value: Any, reusableValue: Boolean = false)

Properties

Link copied to clipboard
val reusableValue: Boolean = false
Link copied to clipboard
val type: KClass<*>

Star projected class computed from typeInfo

Link copied to clipboard
val typeInfo: KType
Link copied to clipboard
val value: Any