这个
LeaderInitiator
散发出
OnGrantedEvent
和
OnRevokedEvent
,当其成为领导者且其领导地位被撤销时。
看见
https://docs.spring.io/spring-integration/reference/html/messaging-endpoints-chapter.html#endpoint-roles
https://docs.spring.io/spring-integration/reference/html/messaging-endpoints-chapter.html#leadership-event-handling
有关这些事件处理以及它如何影响特定角色中的组件的更多信息。
SmartLifecycleRoleController
章请随时就此事提出JIRA,欢迎您的贡献!
使现代化
@RunWith(SpringRunner.class)
@DirtiesContext
public class LeaderInitiatorFactoryBeanTests extends ZookeeperTestSupport {
private static CuratorFramework client;
@Autowired
private PollableChannel stringsChannel;
@BeforeClass
public static void getClient() throws Exception {
client = createNewClient();
}
@AfterClass
public static void closeClient() {
if (client != null) {
client.close();
}
}
@Test
public void test() {
assertNotNull(this.stringsChannel.receive(10_000));
}
@Configuration
@EnableIntegration
public static class Config {
@Bean
public LeaderInitiatorFactoryBean leaderInitiator(CuratorFramework client) {
return new LeaderInitiatorFactoryBean()
.setClient(client)
.setPath("/siTest/")
.setRole("foo");
}
@Bean
public CuratorFramework client() {
return LeaderInitiatorFactoryBeanTests.client;
}
@Bean
@InboundChannelAdapter(channel = "stringsChannel", autoStartup = "false", poller = @Poller(fixedDelay = "100"))
@Role("foo")
public Supplier<String> inboundChannelAdapter() {
return () -> "foo";
}
@Bean
public PollableChannel stringsChannel() {
return new QueueChannel();
}
}
}
我有这样的日志:
2018-12-14 10:12:33,542 DEBUG [Curator-LeaderSelector-0] [org.springframework.integration.support.SmartLifecycleRoleController] - Starting [leaderInitiatorFactoryBeanTests.Config.inboundChannelAdapter.inboundChannelAdapter] in role foo
2018-12-14 10:12:33,578 DEBUG [Curator-LeaderSelector-0] [org.springframework.integration.support.SmartLifecycleRoleController] - Stopping [leaderInitiatorFactoryBeanTests.Config.inboundChannelAdapter.inboundChannelAdapter] in role foo