INT-4408: PollerSpec Doc Polishing

JIRA: https://jira.spring.io/browse/INT-4408
This commit is contained in:
Gary Russell
2018-02-20 14:22:24 -05:00
committed by Artem Bilan
parent 7dc0f5db9f
commit 24809557fb

View File

@@ -206,13 +206,16 @@ The `Pollers` builder factory can be used to configure common bean definitions o
[source,java]
----
@Bean(name = PollerMetadata.DEFAULT_POLLER)
public PollerMetadata poller() {
return Pollers.fixedRate(500).get();
public PollerSpec poller() {
return Pollers.fixedRate(500)
.errorChannel("myErrors");
}
----
See `Pollers` and `PollerSpec` Java Docs for more information.
IMPORTANT: If you use the DSL to construct a `PollerSpec` as a `@Bean`, do not call the `get()` method in the bean definition; the `PollerSpec` is a `FactoryBean` that will generate the `PollerMetadata` object from the specification and initialize all of its properties as needed.
[[java-dsl-endpoints]]
=== DSL and Endpoint Configuration