Package | Description |
---|---|
com.hazelcast.jet |
Hazelcast Jet is a distributed computation engine running on top of
Hazelcast IMDG technology.
|
com.hazelcast.jet.core.processor |
Contains static utility classes with factories of Jet processors.
|
com.hazelcast.jet.pipeline |
The Pipeline API is Jet's high-level API to build and execute
distributed computation jobs.
|
Modifier and Type | Method and Description |
---|---|
static <T,K,V> StreamSource<T> |
Sources.cacheJournal(String cacheName,
DistributedPredicate<EventJournalCacheEvent<K,V>> predicateFn,
DistributedFunction<EventJournalCacheEvent<K,V>,T> projectionFn,
JournalInitialPosition initialPos)
Returns a source that will stream the
EventJournalCacheEvent
events of the Hazelcast ICache with the specified name. |
static <T,K,V> StreamSource<T> |
Sources.cacheJournal(String cacheName,
DistributedPredicate<EventJournalCacheEvent<K,V>> predicateFn,
DistributedFunction<EventJournalCacheEvent<K,V>,T> projectionFn,
JournalInitialPosition initialPos)
Returns a source that will stream the
EventJournalCacheEvent
events of the Hazelcast ICache with the specified name. |
static <T,K,V> StreamSource<T> |
Sources.remoteCacheJournal(String cacheName,
ClientConfig clientConfig,
DistributedPredicate<EventJournalCacheEvent<K,V>> predicateFn,
DistributedFunction<EventJournalCacheEvent<K,V>,T> projectionFn,
JournalInitialPosition initialPos)
Returns a source that will stream the
EventJournalCacheEvent
events of the Hazelcast ICache with the specified name from a
remote cluster. |
static <T,K,V> StreamSource<T> |
Sources.remoteCacheJournal(String cacheName,
ClientConfig clientConfig,
DistributedPredicate<EventJournalCacheEvent<K,V>> predicateFn,
DistributedFunction<EventJournalCacheEvent<K,V>,T> projectionFn,
JournalInitialPosition initialPos)
Returns a source that will stream the
EventJournalCacheEvent
events of the Hazelcast ICache with the specified name from a
remote cluster. |
Copyright © 2018 Hazelcast, Inc.. All rights reserved.