Wire Representation

A wire representation is a `telephone number' which can be sent through a stream:

class WireRep implements Serializable {
  Space sp; // The process owner of the represented network object
  long id;  // The object identification within the process
  String stubClassName; // For convenience

  ... hashCode, equals and toString ...
  ... readResolve ...
}
The wire representation is assigned the first time a network object is sent to any other process.


- 5 -