Examples of ActorReplyException


Examples of groovyx.gpars.actor.impl.ActorReplyException

     * @param message reply message
     * @throws groovyx.gpars.actor.impl.ActorReplyException If some of the replies failed to be sent.
     */
    public final void reply(final Object message) {
        if (currentSender == null) {
            throw new ActorReplyException(CANNOT_SEND_REPLIES_NO_SENDER_HAS_BEEN_REGISTERED);
        } else {
            currentSender.send(message);
        }
    }
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.