All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class jive.erlang.EReference

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

public class EReference
extends EVar
EReference is a class that encapsulates an Erlang Reference.

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

Constructor Index

 o EReference()
Initiates the reference type.
 o EReference(byte[])
Creates an Erlang Reference with the a given byte array.

Method Index

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

Constructors

 o EReference
 public EReference()
Initiates the reference type.

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

Methods

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

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

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

Overrides:
pack in class EVar

All Packages  Class Hierarchy  This Package  Previous  Next  Index