Package groovyx.gpars.actor

Examples of groovyx.gpars.actor.DynamicDispatchActor.start()


     * @return The new started actor
     */
    public final Actor messageHandler(@DelegatesTo(Actor.class) final Closure code) {
        final DynamicDispatchActor actor = new DynamicDispatchActor().become(code);
        actor.setParallelGroup(this);
        actor.start();
        return actor;
    }

    /**
     * Creates an instance of DynamicDispatchActor, which will cooperate in thread sharing with other actors sharing the same thread pool
View Full Code Here


     */
    public final Actor fairMessageHandler(@DelegatesTo(Actor.class) final Closure code) {
        final DynamicDispatchActor actor = new DynamicDispatchActor().become(code);
        actor.setParallelGroup(this);
        actor.makeFair();
        actor.start();
        return actor;
    }

    /**
     * Creates an instance of StaticDispatchActor.
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.