Uses of Interface
com.hazelcast.function.BiConsumerEx
Package | Description |
---|---|
com.hazelcast.function |
Serializable and exception-declaring variants of functional interfaces from
java.util.function . |
com.hazelcast.jet.grpc |
Contributes
gRPC service factories that can be to apply transformations to
a pipeline which for each input item calls to a gRPC service. |
-
Uses of BiConsumerEx in com.hazelcast.function
Methods in com.hazelcast.function that return BiConsumerEx Modifier and Type Method Description default BiConsumerEx<T,U>
BiConsumerEx. andThen(BiConsumerEx<? super T,? super U> after)
Serializable
variant ofjava.util.function.BiConsumer#andThen(BiConsumer)
.Methods in com.hazelcast.function with parameters of type BiConsumerEx Modifier and Type Method Description default BiConsumerEx<T,U>
BiConsumerEx. andThen(BiConsumerEx<? super T,? super U> after)
Serializable
variant ofjava.util.function.BiConsumer#andThen(BiConsumer)
. -
Uses of BiConsumerEx in com.hazelcast.jet.grpc
Method parameters in com.hazelcast.jet.grpc with type arguments of type BiConsumerEx Modifier and Type Method Description static <T, R> ServiceFactory<?,? extends GrpcService<T,R>>
GrpcServices. unaryService(SupplierEx<? extends io.grpc.ManagedChannelBuilder<?>> channelFn, FunctionEx<? super io.grpc.ManagedChannel,? extends BiConsumerEx<T,io.grpc.stub.StreamObserver<R>>> callStubFn)
Creates aServiceFactory
that calls out to a unary gRPC service.