Uses of Interface
org.axonframework.eventhandling.async.SequencingPolicy

Packages that use SequencingPolicy
org.axonframework.eventhandling.async   
 

Uses of SequencingPolicy in org.axonframework.eventhandling.async
 

Classes in org.axonframework.eventhandling.async that implement SequencingPolicy
 class FullConcurrencyPolicy
          SequencingPolicy that does not enforce any sequencing requirements on event processing.
 class SequentialPerAggregatePolicy
          Concurrency policy that requires sequential processing of events raised by the same aggregate.
 class SequentialPolicy
          SequencingPolicy that requires serialized handling of all events delivered to an event handler.
 

Constructors in org.axonframework.eventhandling.async with parameters of type SequencingPolicy
AsynchronousCluster(String identifier, Executor executor, TransactionManager transactionManager, SequencingPolicy<? super EventMessage<?>> sequencingPolicy)
          Creates an AsynchronousCluster implementation using the given executor, transactionManager and sequencingPolicy.
AsynchronousCluster(String identifier, Executor executor, TransactionManager transactionManager, SequencingPolicy<? super EventMessage<?>> sequencingPolicy, int batchSize, RetryPolicy retryPolicy, int retryInterval)
          Creates an AsynchronousCluster implementation using the given executor, transactionManager and sequencingPolicy.
AsynchronousExecutionWrapper(Executor executor, SequencingPolicy<? super T> sequencingPolicy)
          Initialize the AsynchronousExecutionWrapper using the given executor.
AsynchronousExecutionWrapper(Executor executor, TransactionManager transactionManager, SequencingPolicy<? super T> sequencingPolicy, RetryPolicy retryPolicy, int batchSize, int retryInterval)
          Initialize the AsynchronousExecutionWrapper using the given executor and transactionManager.
 



Copyright © 2010-2012. All Rights Reserved.