Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added consumer.{delay|initialDelay|userFixedDelay} options

...

Name

Description

Example

Required

default value

inputChannel

The spring integration input channel name this endpoint wants to consume from that is defined in the spring context

inputChannel=requestChannel

No

 

outputChannel

The spring integration output channel name to send message to the spring integration context

outputChannel=replyChannel

No

 

inOut

The exchange pattern that spring integration endpoint should use

inOut=true

No

inOnly for the spring integration consumer and outOnly for the spring integration provider

consumer.delay

Delay in millis between each poll

consumer.delay=60000

No

500

consumer.initialDelay

Millis before polling starts

consumer.initialDelay=10000

No

1000

consumer.userFixedDelay

true to use fixed delay between pools, otherwise fixed rate is used. See ScheduledExecutorService in JDK for details.

consumer.userFixedDelay=false

No

false

Usage

Spring Integration component is a bridge which connects Spring Integration endpoints through the Spring integration's input and output channels with the Camel endpoints. In this way, we can send out the Camel message to Spring Integration endpoints or receive the message from Spring Integration endpoint in Camel routing context.

...