use of actor4j.core.actors.PseudoActor in project actor4j-core by relvaner.
the class ActorSystemImpl method internal_addCell.
protected UUID internal_addCell(ActorCell cell) {
Actor actor = cell.actor;
if (actor instanceof PseudoActor)
pseudoCells.put(cell.id, cell);
else {
actor.setCell(cell);
cells.put(cell.id, cell);
if (actor instanceof ResourceActor)
resourceCells.put(cell.id, false);
if (executerService.isStarted()) {
messageDispatcher.registerCell(cell);
/* preStart */
cell.preStart();
}
}
return cell.id;
}
use of actor4j.core.actors.PseudoActor in project actor4j-core by relvaner.
the class PseudoActorFeature method test.
@Test(timeout = 2000)
public void test() {
CountDownLatch testDone = new CountDownLatch(10);
ActorSystem system = new ActorSystem();
PseudoActor main = new PseudoActor(system, false) {
@Override
public void receive(ActorMessage<?> message) {
}
};
final int[] postconditions_numbers = new int[] { 341, 351, 451, 318, 292, 481, 240, 478, 382, 502, 158, 401, 438, 353, 165, 344, 6, 9, 18, 31, 77, 90, 45, 63, 190, 1 };
UUID numberGenerator = system.addActor(new ActorFactory() {
@Override
public Actor create() {
return new Actor("numberGenerator") {
protected ActorTimer timer;
protected int counter = 0;
@Override
public void preStart() {
timer = system.timer().schedule(() -> new ActorMessage<Integer>(postconditions_numbers[counter++], 0, self(), null), main.getId(), 0, 25);
}
@Override
public void receive(ActorMessage<?> message) {
logger().debug(String.format("numberGenerator received a message.tag (%d) from main%n", message.tag));
testDone.countDown();
}
@Override
public void postStop() {
timer.cancel();
}
};
}
});
Timer timer = new Timer();
timer.schedule(new TimerTask() {
protected int i;
protected int counter = 0;
@Override
public void run() {
main.runWithRx().take(2).forEach(msg -> {
assertEquals(postconditions_numbers[counter++], msg.valueAsInt());
logger().debug("-> main received a message.value (" + msg.valueAsInt() + ") from numberGenerator");
});
main.send(new ActorMessage<>(null, i++, main.getId(), numberGenerator));
}
}, 0, 50);
system.start();
try {
testDone.await();
} catch (InterruptedException e) {
e.printStackTrace();
}
timer.cancel();
system.shutdownWithActors(true);
}
Aggregations