Beispiel #1
0
        public ViewChangeWatcher(ViewChangeWatcherContext context)
        {
            Context.System.EventStream.Subscribe(Self, typeof(ViewChanged));

            Receive <ViewChanged>(e =>
            {
                context.AddViewChangedEvent(e);
            });
        }
 public TestingActorSystemFactory(ViewChangeWatcherContext context)
 {
     this.context = context;
 }