shutdownCommandListener = system.actorOf(new Props(ActorLevel0_SystemShutdowner.class), "shutdownCommandListener");
}
@SuppressWarnings({ "unchecked" })
public List<Object> run(final List<Object> data, List<Object> parameters, Function<?, ?> functionToApply, final int numberOfWorkers, int numberOfSecondsTimeout) {
ActorRef actorLevel1 = system.actorOf(new Props(new UntypedActorFactory() {
private static final long serialVersionUID = 1L;
public UntypedActor create() {
return new ActorLevel1(data, numberOfWorkers);
}
}), "ActorLevel1-" + System.currentTimeMillis());