Tabnine Logo
EventDrivenConsumer.logComponentSubscriptionEvent
Code IndexAdd Tabnine to your IDE (free)

How to use
logComponentSubscriptionEvent
method
in
org.springframework.integration.endpoint.EventDrivenConsumer

Best Java code snippets using org.springframework.integration.endpoint.EventDrivenConsumer.logComponentSubscriptionEvent (Showing top 4 results out of 315)

origin: spring-projects/spring-integration

@Override
protected void doStart() {
  this.logComponentSubscriptionEvent(true);
  this.inputChannel.subscribe(this.handler);
  if (this.handler instanceof Lifecycle) {
    ((Lifecycle) this.handler).start();
  }
}
origin: spring-projects/spring-integration

@Override
protected void doStop() {
  this.logComponentSubscriptionEvent(false);
  this.inputChannel.unsubscribe(this.handler);
  if (this.handler instanceof Lifecycle) {
    ((Lifecycle) this.handler).stop();
  }
}
origin: org.springframework.integration/spring-integration-core

@Override
protected void doStop() {
  this.logComponentSubscriptionEvent(false);
  this.inputChannel.unsubscribe(this.handler);
  if (this.handler instanceof Lifecycle) {
    ((Lifecycle) this.handler).stop();
  }
}
origin: org.springframework.integration/spring-integration-core

@Override
protected void doStart() {
  this.logComponentSubscriptionEvent(true);
  this.inputChannel.subscribe(this.handler);
  if (this.handler instanceof Lifecycle) {
    ((Lifecycle) this.handler).start();
  }
}
org.springframework.integration.endpointEventDrivenConsumerlogComponentSubscriptionEvent

Popular methods of EventDrivenConsumer

  • <init>
  • getComponentName
  • start
  • afterPropertiesSet
  • isRunning
  • getHandler
  • getPhase
  • isAutoStartup
  • setBeanFactory
  • setBeanName
  • setPhase
  • setPhase

Popular in Java

  • Making http post requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • onCreateOptionsMenu (Activity)
  • getExternalFilesDir (Context)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Path (java.nio.file)
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Runner (org.openjdk.jmh.runner)
  • Top plugins for WebStorm
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