@Deprecated public interface RemoteCall
RemoteCall
是由RMI运行时(与远程对象的存根和骨架结合使用)执行对远程对象的调用的抽象。
该RemoteCall
接口被推荐使用,因为它只是使用的过时的方法java.rmi.server.RemoteRef
。
RemoteRef
Modifier and Type | Method and Description |
---|---|
void |
done()
已弃用
没有替换
|
void |
executeCall()
已弃用
没有替换
|
ObjectInput |
getInputStream()
已弃用
没有替换
|
ObjectOutput |
getOutputStream()
已弃用
没有替换
|
ObjectOutput |
getResultStream(boolean success)
已弃用
没有替换
|
void |
releaseInputStream()
已弃用
没有替换
|
void |
releaseOutputStream()
已弃用
没有替换
|
@Deprecated ObjectOutput getOutputStream() throws IOException
IOException
- 如果发生I / O错误。
@Deprecated void releaseOutputStream() throws IOException
IOException
- 如果发生I / O错误。
@Deprecated ObjectInput getInputStream() throws IOException
IOException
- 如果发生I / O错误。
@Deprecated void releaseInputStream() throws IOException
IOException
- 如果发生I / O错误。
@Deprecated ObjectOutput getResultStream(boolean success) throws IOException, StreamCorruptedException
success
- 如果为真,表示正常返回,否则表示异常返回。
IOException
- 如果发生I / O错误。
StreamCorruptedException
- 如果已经被调用。
@Deprecated void executeCall() throws 异常
异常
- 如果发生一般异常。
@Deprecated void done() throws IOException
IOException
- 如果发生I / O错误。
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.