Uses of Interface
com.hazelcast.jet.pipeline.JournalSourceEntry
Packages that use JournalSourceEntry
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 JournalSourceEntry in com.hazelcast.jet
Methods in com.hazelcast.jet that return types with arguments of type JournalSourceEntryModifier and TypeMethodDescriptionstatic <K,V> FunctionEx<EventJournalCacheEvent<K, V>, JournalSourceEntry<K, V>> Util.cacheEventToJournalEntry()Returns a projection that converts theEventJournalCacheEventto aJournalSourceEntryusing the event's new value as a value.static <K,V> FunctionEx<EventJournalMapEvent<K, V>, JournalSourceEntry<K, V>> Util.mapEventToJournalEntry()Returns a projection that converts theEventJournalMapEventto aJournalSourceEntryusing the event's new value as a value. -
Uses of JournalSourceEntry in com.hazelcast.jet.pipeline
Methods in com.hazelcast.jet.pipeline that return types with arguments of type JournalSourceEntryModifier and TypeMethodDescriptionstatic <K,V> StreamSource<JournalSourceEntry<K, V>> Sources.cacheJournalEntries(String cacheName, JournalInitialPosition initialPos) Same asSources.cacheJournal(String, JournalInitialPosition), but returnsJournalSourceEntry, which provides information about whether dropped events occurred in the journal.static <K,V> StreamSource<JournalSourceEntry<K, V>> Sources.mapJournalEntries(IMap<? extends K, ? extends V> map, JournalInitialPosition initialPos) Same asSources.mapJournal(IMap, JournalInitialPosition), but returnsJournalSourceEntry, which provides information about whether dropped events occurred in the journal.static <K,V> StreamSource<JournalSourceEntry<K, V>> Sources.mapJournalEntries(String mapName, JournalInitialPosition initialPos) Same asSources.mapJournal(String, JournalInitialPosition), but returnsJournalSourceEntry, which provides information about whether dropped events occurred in the journal.static <K,V> StreamSource<JournalSourceEntry<K, V>> Sources.remoteCacheJournalEntries(String cacheName, ClientConfig clientConfig, JournalInitialPosition initialPos) Same asSources.remoteCacheJournal(String, ClientConfig, JournalInitialPosition), but returnsJournalSourceEntry, which provides information about whether dropped events occurred in the journal.static <K,V> StreamSource<JournalSourceEntry<K, V>> Sources.remoteMapJournalEntries(String mapName, ClientConfig clientConfig, JournalInitialPosition initialPos) Same asSources.remoteMapJournal(String, ClientConfig, JournalInitialPosition), but returnsJournalSourceEntry, which provides information about whether dropped events occurred in the journal.static <K,V> StreamSource<JournalSourceEntry<K, V>> Sources.remoteMapJournalEntries(String mapName, DataConnectionRef dataConnectionRef, JournalInitialPosition initialPos) Same asSources.remoteMapJournal(String, DataConnectionRef, JournalInitialPosition), but returnsJournalSourceEntry, which provides information about whether dropped events occurred in the journal.