Examples of ActorRefProvider


Examples of akka.actor.ActorRefProvider

        Map<String, Object> result = PromiseActorRefPropertyExtractor.INSTANCE.extractProperties(ref);
        assertEquals("not the expected result", Collections.singletonMap("local", Boolean.TRUE), result);
    }

    private PromiseActorRef createActorRef() {
        ActorRefProvider refProvider = mock(ActorRefProvider.class, RETURNS_DEFAULTS);
        @SuppressWarnings("unchecked")
        Promise<Object> promise = mock(Promise.class, RETURNS_SMART_NULLS);

        PromiseActorRef ref = new PromiseActorRef(refProvider, promise);
        return ref;
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.