whereis() public method

public whereis ( System name ) : Pid
name System
return Otp.Erlang.Pid
Beispiel #1
0
 /*
  * Determine the {@link Pid pid} corresponding to a
  * registered name on this {@link OtpNode node}.
  *
  * <p> This method calls a method with the same name in {@link
  * OtpNode#whereis Otpnode} but is provided here for convenience.
  * </p>
  *
  * @return the {@link Pid pid} corresponding to the
  * registered name, or null if the name is not known on this node.
  **/
 public virtual Erlang.Pid whereis(System.String name)
 {
     return(home.whereis(name));
 }