// - Handler for uncaught exceptions from actors
// - Logging of all messages for debug purposes (here disabled)
ExecutorService actorsThreadPool = Executors.newCachedThreadPool();
Actors actors = new MultiThreadedActors(
actorsThreadPool,
new DynamicEventizerProvider(),
new CrashEarlyFailureHandler(),
new NullMessageListener()
);
// Start up a thread where messages to actors will be executed