I want to be able to throttle requests received from my SubscribableChannel. I do not use a PollableChannel. Will i be able to do an equivalent of this:
<bridge input-channel="pollable" output-channel="subscribable">
<poller max-messages-per-poll="10">
<interval-trigger interval="5" time-unit="SECONDS"/>
</poller>
</bridge>
http://docs.spring.io/spring-integration/docs/2.0.0.M4/spring-integration-reference/html/bridge.html
using annotations?