+act add getEventStream to ActorSystem #25870

This commit is contained in:
kerr 2018-11-09 19:29:05 +08:00 committed by Johan Andrén
parent f66ee1cbe8
commit e847ce016a
6 changed files with 26 additions and 21 deletions

View file

@ -159,7 +159,7 @@ public class FaultHandlingTest extends AbstractJavaTest {
EventFilter ex3 = new ErrorFilter(IllegalArgumentException.class);
EventFilter ex4 = new ErrorFilter(Exception.class);
EventFilter[] ignoreExceptions = { ex1, ex2, ex3, ex4 };
system.eventStream().publish(new TestEvent.Mute(immutableSeq(ignoreExceptions)));
system.getEventStream().publish(new TestEvent.Mute(immutableSeq(ignoreExceptions)));
//#create
Props superprops = Props.create(Supervisor.class);