Uses of Enum Class
com.hazelcast.jet.config.ProcessingGuarantee
Package
Description
Jet's configuration data objects.
Jet's Core API.
Contains static utility classes with factories of Jet processors.
Utilities for writing tests of Core API Processors.
The Pipeline API is Jet's high-level API to build and execute
distributed computation jobs.
-
Uses of ProcessingGuarantee in com.hazelcast.jet.config
Modifier and TypeMethodDescriptionJobConfig.getProcessingGuarantee()
Returns the configuredprocessing guarantee
.static ProcessingGuarantee
Returns the enum constant of this class with the specified name.static ProcessingGuarantee[]
ProcessingGuarantee.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionJobConfig.setProcessingGuarantee
(ProcessingGuarantee processingGuarantee) Set theprocessing guarantee
for the job. -
Uses of ProcessingGuarantee in com.hazelcast.jet.core
Modifier and TypeMethodDescriptionProcessorMetaSupplier.Context.processingGuarantee()
Returns the guarantee for current job. -
Uses of ProcessingGuarantee in com.hazelcast.jet.core.processor
Modifier and TypeMethodDescriptionstatic <T> ProcessorMetaSupplier
SourceProcessors.streamJmsQueueP
(String destination, ProcessingGuarantee maxGuarantee, EventTimePolicy<? super T> eventTimePolicy, SupplierEx<? extends jakarta.jms.Connection> newConnectionFn, FunctionEx<? super jakarta.jms.Session, ? extends jakarta.jms.MessageConsumer> consumerFn, FunctionEx<? super jakarta.jms.Message, ?> messageIdFn, FunctionEx<? super jakarta.jms.Message, ? extends T> projectionFn) Returns a supplier of processors forSources.jmsQueueBuilder(com.hazelcast.function.SupplierEx<? extends jakarta.jms.ConnectionFactory>)
.static <T> ProcessorMetaSupplier
SourceProcessors.streamJmsTopicP
(String destination, boolean isSharedConsumer, ProcessingGuarantee maxGuarantee, EventTimePolicy<? super T> eventTimePolicy, SupplierEx<? extends jakarta.jms.Connection> newConnectionFn, FunctionEx<? super jakarta.jms.Session, ? extends jakarta.jms.MessageConsumer> consumerFn, FunctionEx<? super jakarta.jms.Message, ?> messageIdFn, FunctionEx<? super jakarta.jms.Message, ? extends T> projectionFn) Returns a supplier of processors forSources.jmsTopicBuilder(com.hazelcast.function.SupplierEx<? extends jakarta.jms.ConnectionFactory>)
. -
Uses of ProcessingGuarantee in com.hazelcast.jet.core.test
Modifier and TypeMethodDescriptionTestProcessorContext.setProcessingGuarantee
(ProcessingGuarantee processingGuarantee) TestProcessorMetaSupplierContext.setProcessingGuarantee
(ProcessingGuarantee processingGuarantee) Sets the processing guarantee.TestProcessorSupplierContext.setProcessingGuarantee
(ProcessingGuarantee processingGuarantee) -
Uses of ProcessingGuarantee in com.hazelcast.jet.pipeline
Modifier and TypeMethodDescriptionJmsSourceBuilder.maxGuarantee
(ProcessingGuarantee guarantee) Sets the maximum processing guarantee for the source.