Name

DGC

Synopsis

The DGC represents the distributed garbage collection system. The dirty method is called whenever a client obtains a reference to a remote object, and the clean method is called when a particular client has no more references to a given remote object.

                  Classes
public interface DGC extends Remote {
// Public Instance Methods
   public abstract void clean(
        java.rmi.server.ObjID[] ids, 
        long sequenceNum, VMID vmid, 
        boolean strong) throws RemoteException;  
   public abstract Lease dirty(
        java.rmi.server.ObjID[] ids, 
        long sequenceNum, 
        Lease lease) throws RemoteException;  
}

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.