Uses of Interface
com.hazelcast.jet.Observable
Package
Description
Hazelcast Jet is a distributed computation engine running on top of
Hazelcast IMDG technology.
The Pipeline API is Jet's high-level API to build and execute
distributed computation jobs.
-
Uses of Observable in com.hazelcast.jet
Modifier and TypeMethodDescriptionObservable.configureCapacity
(int capacity) Set the capacity of the underlyingRingbuffer
, which defaults to 10000.<T> Observable<T>
JetService.getObservable
(String name) Returns anObservable
instance with the specified name.default <T> Observable<T>
JetService.newObservable()
Returns a new observable with a randomly generated nameModifier and TypeMethodDescriptionCollection<Observable<?>>
JetService.getObservables()
Returns a list of all theObservables
that are active. -
Uses of Observable in com.hazelcast.jet.pipeline
Modifier and TypeMethodDescriptionstatic <T> Sink<T>
Sinks.observable
(Observable<? super T> observable) Returns a sink that publishes to the providedObservable
.