Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When implementing an Endpoint you typically may implement one or more of the following methods

Typically you just derive from DefaultEndpoint and implement any of the factory methods required such as

If your endpoint is a polling-centric component you can just derive from DefaultPollingEndpoint and then implement createPollingConsumer(); the createConsumer() method will be created for you which avoids you having to write any polling code.

Dependency injection and auto-discovery

...