142.4. 主题消费者 - from ("hazelcast-topic:foo")
主题消费者仅提供一个操作(接收)。当涉及主题时,此组件应该支持多个消耗,因此您可以自由地获得同一 hazelcast 主题所需的消费者。
fromF("hazelcast-%sfoo", HazelcastConstants.TOPIC_PREFIX)
.choice()
.when(header(HazelcastConstants.LISTENER_ACTION).isEqualTo(HazelcastConstants.RECEIVED))
.log("...message received")
.otherwise()
.log("...this should never have happened")