Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (C) 2013, Parallel Universe Software Co. All rights reserved.
*
* This program and the accompanying materials are dual-licensed under
* either the terms of the Eclipse Public License v1.0 as published by
* the Eclipse Foundation
*
* or (per the licensee's choosing)
*
* under the terms of the GNU Lesser General Public License version 3.0
* as published by the Free Software Foundation.
*/
package co.paralleluniverse.actors;
import co.paralleluniverse.fibers.SuspendExecution;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
/**
*
* @author pron
*/
public class SelectiveReceiveHelper {
private final Actor actor;
private Message currentMessage; // this works because channel is single-consumer
public SelectiveReceiveHelper(Actor actor) {
if (actor == null)
throw new NullPointerException("actor is null");
this.actor = actor;
}
/**
*
* @param proc
* @param timeout
* @param unit
* @throws TimeoutException
* @throws LwtInterruptedException
*/
public final T receive(long timeout, TimeUnit unit, MessageProcessor proc) throws TimeoutException, SuspendExecution, InterruptedException {
assert Actor.currentActor() == null || Actor.currentActor() == actor;
final Mailbox