congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
EventProcessingConfiguration.getRollbackConfiguration
Code IndexAdd Tabnine to your IDE (free)

How to use
getRollbackConfiguration
method
in
org.axonframework.config.EventProcessingConfiguration

Best Java code snippets using org.axonframework.config.EventProcessingConfiguration.getRollbackConfiguration (Showing top 2 results out of 315)

origin: org.axonframework/axon-core

private SubscribingEventProcessor subscribingEventProcessor(String name, Configuration conf,
                              EventHandlerInvoker eventHandlerInvoker,
                              Function<Configuration, SubscribableMessageSource<? extends EventMessage<?>>> messageSource) {
  return new SubscribingEventProcessor(name,
                     eventHandlerInvoker,
                     getRollbackConfiguration(conf, name),
                     messageSource.apply(conf),
                     DirectEventProcessingStrategy.INSTANCE,
                     getErrorHandler(conf, name),
                     getMessageMonitor(conf, SubscribingEventProcessor.class, name));
}
origin: org.axonframework/axon-core

private TrackingEventProcessor trackingEventProcessor(Configuration conf, String name,
                           EventHandlerInvoker eventHandlerInvoker,
                           Function<Configuration, TrackingEventProcessorConfiguration> config,
                           Function<Configuration, StreamableMessageSource<TrackedEventMessage<?>>> source) {
  return new TrackingEventProcessor(name,
                   eventHandlerInvoker,
                   source.apply(conf),
                   tokenStore.getOrDefault(
                       name,
                       c -> c.getComponent(TokenStore.class, InMemoryTokenStore::new)
                   ).apply(conf),
                   getTransactionManager(conf, name),
                   getMessageMonitor(conf, EventProcessor.class, name),
                   getRollbackConfiguration(conf, name),
                   getErrorHandler(conf, name),
                   config.apply(conf));
}
org.axonframework.configEventProcessingConfigurationgetRollbackConfiguration

Popular methods of EventProcessingConfiguration

  • eventProcessor
    Returns the Event Processor with the given name, if present and of the given expectedType.
  • eventProcessors
    Obtains all registered event processors. This method is to be called after Event Processor Registry
  • eventProcessorByProcessingGroup
    Returns the Event Processor by the given processingGroup, if present and of the given expectedType.
  • registerSubscribingEventProcessor
    Register a subscribing event processor with given name that subscribes to the given messageSource. T
  • <init>
  • buildEventProcessor
  • configureErrorHandler
    Configures the default org.axonframework.eventhandling.ErrorHandler for any org.axonframework.eventh
  • configureMessageMonitor
    Configures the factory to create the Message Monitor for the EventProcessor of the given name. This
  • configureRollbackConfiguration
    Configures a RollbackConfiguration for the EventProcessor of the given name. This overrides the defa
  • configureTransactionManager
    Configures a TransactionManager for the EventProcessor of the given name. This overrides the default
  • getErrorHandler
  • getMessageMonitor
  • getErrorHandler,
  • getMessageMonitor,
  • getTransactionManager,
  • listenerInvocationErrorHandler,
  • processorNameForProcessingGroup,
  • registerEventProcessor,
  • registerEventProcessorFactory,
  • registerHandlerInterceptor,
  • registerHandlerInvoker

Popular in Java

  • Finding current android device location
  • runOnUiThread (Activity)
  • getContentResolver (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now