INT-1716 moved ControlBus sample to its own project
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:int="http://www.springframework.org/schema/integration"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration-2.0.xsd
|
||||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
|
||||
|
||||
<int:channel id="controlChannel"/>
|
||||
|
||||
<int:channel id="adapterOutputChanel">
|
||||
<int:queue/>
|
||||
</int:channel>
|
||||
|
||||
<int:control-bus input-channel="controlChannel"/>
|
||||
|
||||
<int:inbound-channel-adapter id="inboundAdapter"
|
||||
channel="adapterOutputChanel"
|
||||
expression="'Hello'"
|
||||
auto-startup="false">
|
||||
<int:poller fixed-rate="1000"/>
|
||||
</int:inbound-channel-adapter>
|
||||
</beans>
|
||||
Reference in New Issue
Block a user