You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
788 B
46 lines
788 B
/*
|
|
* Copyright (c) 1996, 1998, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.rmi.server;
|
|
|
|
/**
|
|
* A remote object implementation should implement the
|
|
* <code>Unreferenced</code> interface to receive notification when there are
|
|
* no more clients that reference that remote object.
|
|
*
|
|
* @author Ann Wollrath
|
|
* @author Roger Riggs
|
|
* @since JDK1.1
|
|
*/
|
|
public interface Unreferenced {
|
|
/**
|
|
* Called by the RMI runtime sometime after the runtime determines that
|
|
* the reference list, the list of clients referencing the remote object,
|
|
* becomes empty.
|
|
* @since JDK1.1
|
|
*/
|
|
public void unreferenced();
|
|
}
|