ChainingOutgoingInterceptor
Types
Middle
Link copied to clipboard
class Middle(interceptor: RPCOutgoingInterceptor, nextLink: DefaultRPCInterceptorRegistry.ChainingOutgoingInterceptor) : DefaultRPCInterceptorRegistry.ChainingOutgoingInterceptor
Content copied to clipboard
Tail
Link copied to clipboard
Functions
interceptOutgoingBistreamCall
Link copied to clipboard
open suspend fun <PAYLOAD, CLIENT_STREAM, SERVER_STREAM> interceptOutgoingBistreamCall(payload: PAYLOAD, stream: Flow<CLIENT_STREAM>, call: ColdBistreamCallDescription<PAYLOAD, CLIENT_STREAM, SERVER_STREAM>, next: suspend (PAYLOAD, Flow<CLIENT_STREAM>) -> Flow<SERVER_STREAM>): Flow<SERVER_STREAM>
Content copied to clipboard
interceptOutgoingDownstreamCall
Link copied to clipboard
open suspend fun <PAYLOAD, SERVER_STREAM> interceptOutgoingDownstreamCall(payload: PAYLOAD, call: ColdDownstreamCallDescription<PAYLOAD, SERVER_STREAM>, next: suspend (PAYLOAD) -> Flow<SERVER_STREAM>): Flow<SERVER_STREAM>
Content copied to clipboard
interceptOutgoingSingleCall
Link copied to clipboard
open suspend fun <PAYLOAD, RESPONSE> interceptOutgoingSingleCall(payload: PAYLOAD, call: SingleCallDescription<PAYLOAD, RESPONSE>, next: suspend (PAYLOAD) -> RESPONSE): RESPONSE
Content copied to clipboard
interceptOutgoingUpstreamCall
Link copied to clipboard
open suspend fun <PAYLOAD, CLIENT_STREAM, RESPONSE> interceptOutgoingUpstreamCall(payload: PAYLOAD, stream: Flow<CLIENT_STREAM>, call: ColdUpstreamCallDescription<PAYLOAD, CLIENT_STREAM, RESPONSE>, next: suspend (PAYLOAD, Flow<CLIENT_STREAM>) -> RESPONSE): RESPONSE
Content copied to clipboard
Inheritors
DefaultRPCInterceptorRegistry.ChainingOutgoingInterceptor
Link copied to clipboard
DefaultRPCInterceptorRegistry.ChainingOutgoingInterceptor
Link copied to clipboard