Class Watch.
Inheritance: Akka.Dispatch.SysMsg.SystemMessage
Exemplo n.º 1
0
 protected bool Equals(Watch other)
 {
     return(Equals(Watchee, other.Watchee) && Equals(Watcher, other.Watcher));
 }
Exemplo n.º 2
0
 /// <summary>
 ///     Handles the watch.
 /// </summary>
 /// <param name="m">The m.</param>
 private void HandleWatch(Watch m)
 {
     WatchedBy.Add(m.Watcher);
     if (System.Settings.DebugLifecycle)
         Publish(new Debug(Self.Path.ToString(), ActorType, "now watched by " + m.Watcher));
 }