📄 unreferenced.java
字号:
/* * @(#)Unreferenced.java 1.11 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN 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. * * @version 1.11, 01/23/03 * @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();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -