- manyToMany(Flux<TRequest>, Function<StreamObserver<TResponse>, StreamObserver<TRequest>>) - Static method in class com.salesforce.reactorgrpc.stub.ClientCalls
-
Implements a bidirectional stream -> stream call as Flux
-> Flux
, where both the client
and the server independently stream to each other.
- manyToMany(StreamObserver<TResponse>, Function<Flux<TRequest>, Flux<TResponse>>) - Static method in class com.salesforce.reactorgrpc.stub.ServerCalls
-
Implements a bidirectional stream -> stream call as Flux
-> Flux
, where both the client
and the server independently stream to each other.
- manyToOne(Flux<TRequest>, Function<StreamObserver<TResponse>, StreamObserver<TRequest>>) - Static method in class com.salesforce.reactorgrpc.stub.ClientCalls
-
Implements a stream -> unary call as Flux
-> Mono
, where the client transits a stream of
messages.
- manyToOne(StreamObserver<TResponse>, Function<Flux<TRequest>, Mono<TResponse>>) - Static method in class com.salesforce.reactorgrpc.stub.ServerCalls
-
Implements a stream -> unary call as Flux
-> Mono
, where the client transits a stream of
messages.