發送一個消息,我有以下的代碼:Spring集成/彈簧云溪:如何使用@inboundchanneladapter
@Bean
@InboundChannelAdapter(value = Source.OUTPUT, poller = @Poller(fixedDelay = "${fixedDelay}", maxMessagesPerPoll = "1"))
public MessageSource<String> timerMessageSource() {
logger.info("Sending Message");
return() -> new GenericMessage<>(new SimpleDateFormat().format(new Date()));
}
我希望禁用輪詢,這樣我可以發送一個消息出來。我怎麼做?
實測值上stackoverlfow帖子的一個例子。 –