Package com.droidkit.actors.extensions

Examples of com.droidkit.actors.extensions.CallbackExtension


        this.path = path;
        this.context = context;
        this.mailbox = mailbox;
        this.askPattern = new ActorAskImpl(self());
        this.typedAsk = new TypedAskExtensions(self());
        this.callbackExtension = new CallbackExtension(self());
        this.extensions.add(askPattern);
        this.extensions.add(typedAsk);
        this.extensions.add(callbackExtension);
        this.extensions.add(new RunnableExtension());
    }
View Full Code Here

TOP

Related Classes of com.droidkit.actors.extensions.CallbackExtension

Copyright © 2018 www.massapicom. 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.