December 1999
Intermediate to advanced
816 pages
20h 27m
English
publicabstract class Activatable
extends RemoteServer

The Activatable class is the abstract base class you need to subclass to define a class that can have an instance remotely activated (that is, instantiated). The role of Activatable for a remote object is similar in this regard to the role of UnicastRemoteObject for a remote object. Here is a code snippet to show this class being used as a superclass:
public class ActivatableBook extends Activatable
implements Borrowable
{
// Define class here.
}
You would make a class that extends Activatable, as opposed to UnicastRemoteObject, if it ...
Read now
Unlock full access