private void Handle( TailCoordinatorActor.StopTail msg )
 {
     foreach ( var child in Context.GetChildren() )
     {
         child.Tell( msg );
     }
 }
Example #2
0
 private void Handle( TailCoordinatorActor.StopTail msg )
 {
     if ( msg.FilePath == _filePath )
     {
         Context.Stop( Self );
     }
 }
 private void Handle( TailCoordinatorActor.StartTail msg )
 {
     Context.ActorOf( Props.Create( () => new TailActor( msg.ViewModel, msg.FilePath ) ) );
 }