public class OtpErlangPid extends OtpErlangObject implements java.lang.Comparable<java.lang.Object>
Constructor and Description |
---|
OtpErlangPid(OtpInputStream buf)
Create an Erlang PID from a stream containing a PID encoded in Erlang
external format.
|
OtpErlangPid(java.lang.String node,
int id,
int serial,
int creation)
Create an Erlang pid from its components.
|
Modifier and Type | Method and Description |
---|---|
int |
compareTo(java.lang.Object o) |
int |
creation()
Get the creation number from the PID.
|
void |
encode(OtpOutputStream buf)
Convert this PID to the equivalent Erlang external representation.
|
boolean |
equals(java.lang.Object o)
Determine if two PIDs are equal.
|
int |
id()
Get the id number from the PID.
|
java.lang.String |
node()
Get the node name from the PID.
|
int |
serial()
Get the serial number from the PID.
|
java.lang.String |
toString()
Get the string representation of the PID.
|
public OtpErlangPid(OtpInputStream buf) throws OtpErlangDecodeException
buf
- the stream containing the encoded PID.OtpErlangDecodeException
- if the buffer does not contain a valid external
representation of an Erlang PID.public OtpErlangPid(java.lang.String node, int id, int serial, int creation)
node
- the nodename.id
- an arbitrary number. Only the low order 15 bits will be used.serial
- another arbitrary number. Only the low order 13 bits will be
used.creation
- yet another arbitrary number. Ony the low order 2 bits will
be used.public int compareTo(java.lang.Object o)
compareTo
in interface java.lang.Comparable<java.lang.Object>
public int creation()
public void encode(OtpOutputStream buf)
encode
in class OtpErlangObject
buf
- an output stream to which the encoded PID should be written.public boolean equals(java.lang.Object o)
equals
in class OtpErlangObject
o
- the other PID to compare to.public int id()
public java.lang.String node()
public int serial()
public java.lang.String toString()
toString
in class OtpErlangObject