public interface ResponderRSocket extends RSocket
RSocket
that allows an implementer to peek at the first request payload of a
channel.Disposable.Composite, Disposable.Swap
Modifier and Type | Method and Description |
---|---|
default Flux<Payload> |
requestChannel(Payload payload,
org.reactivestreams.Publisher<Payload> payloads)
Implement this method to peak at the first payload of the incoming request stream without
having to subscribe to Publish<Payload> payloads
|
availability, fireAndForget, metadataPush, requestChannel, requestResponse, requestStream
dispose, isDisposed
default Flux<Payload> requestChannel(Payload payload, org.reactivestreams.Publisher<Payload> payloads)
payload
- First payload in the stream - this is the same payload as the first payload in
Publisher<Payload> payloadspayloads
- Stream of request payloads.