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

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

Best Java code snippets using org.axonframework.config.EventProcessingConfiguration.getMessageMonitor (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.configEventProcessingConfigurationgetMessageMonitor

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
  • getRollbackConfiguration
  • getErrorHandler,
  • getRollbackConfiguration,
  • getTransactionManager,
  • listenerInvocationErrorHandler,
  • processorNameForProcessingGroup,
  • registerEventProcessor,
  • registerEventProcessorFactory,
  • registerHandlerInterceptor,
  • registerHandlerInvoker

Popular in Java

  • Start an intent from android
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • runOnUiThread (Activity)
  • setScale (BigDecimal)
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • Top Vim 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