Class Watch.
Наследование: Akka.Dispatch.SysMsg.SystemMessage
Пример #1
0
 protected bool Equals(Watch other)
 {
     return(Equals(Watchee, other.Watchee) && Equals(Watcher, other.Watcher));
 }
Пример #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));
 }