public interface Remote
Remote
接口用于标识可以从非本地虚拟机调用其方法的接口。
作为远程对象的任何对象都必须直接或间接实现此接口。
只有在“远程接口”中指定的那些方法,扩展java.rmi.Remote
的接口可以远程访问。
实现类可以实现任意数量的远程接口,并可以扩展其他远程实现类。 RMI提供了远程对象实现可以扩展的一些便利类,这有助于远程对象创建。 这些课程是java.rmi.server.UnicastRemoteObject
和java.rmi.activation.Activatable
。
有关RMI的完整的详细信息,请参阅RMI Specification其描述RMI API和系统。
UnicastRemoteObject
, Activatable
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.