Uses of Enum Class
com.hazelcast.jet.config.ProcessingGuarantee
Packages that use 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
Methods in com.hazelcast.jet.config that return ProcessingGuaranteeModifier 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.Methods in com.hazelcast.jet.config with parameters of type ProcessingGuaranteeModifier and TypeMethodDescriptionJobConfig.setProcessingGuarantee
(ProcessingGuarantee processingGuarantee) Set theprocessing guarantee
for the job. -
Uses of ProcessingGuarantee in com.hazelcast.jet.core
Methods in com.hazelcast.jet.core that return ProcessingGuaranteeModifier and TypeMethodDescriptionProcessorMetaSupplier.Context.processingGuarantee()
Returns the guarantee for current job. -
Uses of ProcessingGuarantee in com.hazelcast.jet.core.processor
Methods in com.hazelcast.jet.core.processor with parameters of type ProcessingGuaranteeModifier 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
Methods in com.hazelcast.jet.core.test that return ProcessingGuaranteeMethods in com.hazelcast.jet.core.test with parameters of type ProcessingGuaranteeModifier 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
Methods in com.hazelcast.jet.pipeline with parameters of type ProcessingGuaranteeModifier and TypeMethodDescriptionJmsSourceBuilder.maxGuarantee
(ProcessingGuarantee guarantee) Sets the maximum processing guarantee for the source.