All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jive.erlang.EPid

java.lang.Object
   |
   +----jive.erlang.EVar
           |
           +----jive.erlang.EPid

public class EPid
extends EVar
EPid is a class that encapsulates an Erlang Pid.

Author:
Kaj Nygren (kaj@medialab.ericsson.se), Kent Boortz (kent@erlang.ericsson.se)

Constructor Index

 o EPid()
Initiates the pid type.
 o EPid(byte[])
Creates an Erlang Pid with the a given byte array.

Method Index

 o length()
Returns the length of the Erlang Pid.
 o pack()
Packs the Erlang Pid into a byte array.
 o value()
Returns the integer value of this Erlang Pid.

Constructors

 o EPid
 public EPid()
Initiates the pid type.

 o EPid
 public EPid(byte data[])
Creates an Erlang Pid with the a given byte array.

Methods

 o value
 public byte[] value()
Returns the integer value of this Erlang Pid.

 o length
 public int length()
Returns the length of the Erlang Pid.

 o pack
 public byte[] pack()
Packs the Erlang Pid into a byte array. Used when sending the pid to an Erlang server.

Overrides:
pack in class EVar

All Packages  Class Hierarchy  This Package  Previous  Next  Index