!clt #15410 Change path in ClusterSingletonProxy.props

* to avoid giving the name of both singleton manager and singleton instance
This commit is contained in:
Patrik Nordwall 2015-06-04 21:21:37 +02:00
parent bc4d480d7e
commit 23c28af469
17 changed files with 73 additions and 121 deletions

View file

@ -31,16 +31,18 @@ public class ClusterSingletonManagerTest {
final ActorRef testActor = null;
//#create-singleton-manager
final ClusterSingletonManagerSettings settings = ClusterSingletonManagerSettings.create(system)
.withSingletonName("consumer").withRole("worker");
system.actorOf(ClusterSingletonManager.props(Props.create(Consumer.class, queue, testActor),
new End(), settings), "singleton");
final ClusterSingletonManagerSettings settings =
ClusterSingletonManagerSettings.create(system).withRole("worker");
system.actorOf(ClusterSingletonManager.props(
Props.create(Consumer.class, queue, testActor),
new End(), settings), "consumer");
//#create-singleton-manager
//#create-singleton-proxy
ClusterSingletonProxySettings proxySettings =
ClusterSingletonProxySettings proxySettings =
ClusterSingletonProxySettings.create(system).withRole("worker");
system.actorOf(ClusterSingletonProxy.props("user/singleton/consumer", proxySettings), "consumerProxy");
system.actorOf(ClusterSingletonProxy.props("/user/consumer", proxySettings),
"consumerProxy");
//#create-singleton-proxy
}