Examples of routerConfig()


Examples of akka.routing.RoutedActorRef.routerConfig()

    }

    public Map<String, Object> extractProperties(ActorRef actorRef) {
        RoutedActorRef ref = (RoutedActorRef) actorRef;
        Map<String, Object> result = new HashMap<String, Object>();
        RouterConfig routerConfig = ref.routerConfig();
        result.putAll(AkkaRouterConfigHelper.getInstance().getRouterConfigInformation(routerConfig));
        result.put("local", Boolean.valueOf(ref.isLocal()));
        return result;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.