X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-akka-raft-example%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fexample%2FExampleRoleChangeListener.java;h=6e89ca7110e2bbe31444b4113831f8b45a7fbb5d;hp=1676a41c56d7f9c2cfe81a7fc9e46c6828c8d721;hb=6dbf8f82cfa9fe8c35e4085213a55cb887cc3aee;hpb=9fb1df14f2dc885fee1dce821b753cc99af6e54f 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 1676a41c56..6e89ca7110 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 @@ -1,3 +1,11 @@ +/* + * Copyright (c) 2014, 2015 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + package org.opendaylight.controller.cluster.example; import akka.actor.ActorRef; @@ -16,18 +24,18 @@ 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 - *

+ *

* 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 - *

+ *

* 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{ // the akka url should be set to the notifiers actor-system and domain. - private static final String NOTIFIER_AKKA_URL = "akka.tcp://raft-test@127.0.0.1:2550/user/"; + private static final String NOTIFIER_AKKA_URL = "akka://raft-test@127.0.0.1:2550/user/"; private Map notifierRegistrationStatus = new HashMap<>(); private Cancellable registrationSchedule = null; @@ -37,7 +45,6 @@ public class ExampleRoleChangeListener extends AbstractUntypedActor implements A private static final String[] shardsToMonitor = new String[] {"example"}; public ExampleRoleChangeListener(String memberName) { - super(); scheduleRegistrationListener(schedulerDuration); this.memberName = memberName; populateRegistry(memberName);