Esempio n. 1
0
 public bool TryGetByName(string name, out ChildStats stats)
 {
     if (InternalChildren.TryGet(name, out stats))
     {
         return(true);
     }
     stats = null;
     return(false);
 }
Esempio n. 2
0
 public bool TryGetByName(string name, out ChildStats stats)
 {
     stats = null;
     return(false);
 }
Esempio n. 3
0
 /// <summary>
 /// Tries to get the stats for the child with the specified name. The stats can be either <see cref="ChildNameReserved"/>
 /// indicating that only a name has been reserved for the child, or a <see cref="ChildRestartStats"/> for a child that
 /// has been initialized/created.
 /// </summary>
 public bool TryGetChildStatsByName(string name, out ChildStats child)   //This is called getChildByName in Akka JVM
 {
     return(ChildrenContainer.TryGetByName(name, out child));
 }
 public  bool TryGetByName(string name, out ChildStats stats)
 {
     if (InternalChildren.TryGet(name, out stats)) return true;
     stats = null;
     return false;
 }
Esempio n. 5
0
 public bool TryGetChildStatsByName(string name, out ChildStats child)
 {
     child = null;
     return(false);
 }
 public bool TryGetByName(string name, out ChildStats stats)
 {
     stats = null;
     return false;
 }
 public bool TryGetChildStatsByName(string name, out ChildStats child)
 {
     child = null;
     return false;
 }