X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fmd-sal%2Fsal-akka-raft-example%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fexample%2FExampleRoleChangeListener.java;h=0d11d7201d7cbd18efa2909128c5ea2b1d3482a9;hb=1984e660ade65e692708722d21cbbbf76701151c;hp=6e89ca7110e2bbe31444b4113831f8b45a7fbb5d;hpb=4971aed628d669fec45185569b43d042ec650421;p=controller.git diff --git a/opendaylight/md-sal/sal-akka-raft-example/src/main/java/org/opendaylight/controller/cluster/example/ExampleRoleChangeListener.java b/opendaylight/md-sal/sal-akka-raft-example/src/main/java/org/opendaylight/controller/cluster/example/ExampleRoleChangeListener.java index 6e89ca7110..0d11d7201d 100644 --- a/opendaylight/md-sal/sal-akka-raft-example/src/main/java/org/opendaylight/controller/cluster/example/ExampleRoleChangeListener.java +++ b/opendaylight/md-sal/sal-akka-raft-example/src/main/java/org/opendaylight/controller/cluster/example/ExampleRoleChangeListener.java @@ -23,30 +23,32 @@ import scala.concurrent.Await; import scala.concurrent.duration.FiniteDuration; /** - * This is a sample implementation of a Role Change Listener which is an actor, which registers itself to the ClusterRoleChangeNotifier + * This is a sample implementation of a Role Change Listener which is an actor, which registers itself + * to the ClusterRoleChangeNotifier. + * *

* The Role Change listener receives a SetNotifiers message with the notifiers to register itself with. + * *

- * It kicks of a scheduler which sents registration messages to the notifiers, till it gets a RegisterRoleChangeListenerReply + * It kicks of a scheduler which sends registration messages to the notifiers, till it gets a + * RegisterRoleChangeListenerReply. + * *

* If all the notifiers have been regsitered with, then it cancels the scheduler. * It starts the scheduler again when it receives a new registration - * */ -public class ExampleRoleChangeListener extends AbstractUntypedActor implements AutoCloseable{ +public class ExampleRoleChangeListener extends AbstractUntypedActor implements AutoCloseable { // the akka url should be set to the notifiers actor-system and domain. private static final String NOTIFIER_AKKA_URL = "akka://raft-test@127.0.0.1:2550/user/"; - private Map notifierRegistrationStatus = new HashMap<>(); + private final Map notifierRegistrationStatus = new HashMap<>(); private Cancellable registrationSchedule = null; - private static final FiniteDuration duration = new FiniteDuration(100, TimeUnit.MILLISECONDS); - private static final FiniteDuration schedulerDuration = new FiniteDuration(1, TimeUnit.SECONDS); - private final String memberName; - private static final String[] shardsToMonitor = new String[] {"example"}; + private static final FiniteDuration DURATION = new FiniteDuration(100, TimeUnit.MILLISECONDS); + private static final FiniteDuration SCHEDULER_DURATION = new FiniteDuration(1, TimeUnit.SECONDS); + private static final String[] SHARDS_TO_MONITOR = new String[] {"example"}; public ExampleRoleChangeListener(String memberName) { - scheduleRegistrationListener(schedulerDuration); - this.memberName = memberName; + scheduleRegistrationListener(SCHEDULER_DURATION); populateRegistry(memberName); } @@ -86,9 +88,8 @@ public class ExampleRoleChangeListener extends AbstractUntypedActor implements A } private void populateRegistry(String memberName) { - - for (String shard: shardsToMonitor) { - String notifier =(new StringBuilder()).append(NOTIFIER_AKKA_URL).append(memberName) + for (String shard: SHARDS_TO_MONITOR) { + String notifier = new StringBuilder().append(NOTIFIER_AKKA_URL).append(memberName) .append("/").append(memberName).append("-notifier").toString(); if (!notifierRegistrationStatus.containsKey(notifier)) { @@ -97,17 +98,18 @@ public class ExampleRoleChangeListener extends AbstractUntypedActor implements A } if (!registrationSchedule.isCancelled()) { - scheduleRegistrationListener(schedulerDuration); + scheduleRegistrationListener(SCHEDULER_DURATION); } } + @SuppressWarnings("checkstyle:IllegalCatch") private void sendRegistrationRequests() { for (Map.Entry entry : notifierRegistrationStatus.entrySet()) { if (!entry.getValue()) { try { LOG.debug("{} registering with {}", getSelf().path().toString(), entry.getKey()); ActorRef notifier = Await.result( - getContext().actorSelection(entry.getKey()).resolveOne(duration), duration); + getContext().actorSelection(entry.getKey()).resolveOne(DURATION), DURATION); notifier.tell(new RegisterRoleChangeListener(), getSelf()); @@ -133,7 +135,8 @@ public class ExampleRoleChangeListener extends AbstractUntypedActor implements A } } } else { - LOG.info("Unexpected, RegisterRoleChangeListenerReply received from notifier which is not known to Listener:{}", + LOG.info( + "Unexpected, RegisterRoleChangeListenerReply received from notifier which is not known to Listener:{}", senderId); } }