public class ProxyStream extends Object implements IDataStream
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
protected void |
finalize()
This method (when overriden), will be called when the VM determines that the Object can be
garbage collected.
|
boolean |
remoteClose(String remoteName) |
byte[] |
remoteRead(int numBytes,
String remoteName) |
void |
remoteStreamReady() |
boolean |
remoteWrite(byte[] data,
int offset,
int length,
String remoteName) |
protected void finalize()
ObjectThe finalize() method of a Class is only called if it overrides finalize() - the finalize() method java.lang.Object is never called by the Eve VM.
public void close()
throws IOException
IOExceptionpublic byte[] remoteRead(int numBytes,
String remoteName)
throws IOException
remoteRead in interface IDataStreamIOExceptionpublic boolean remoteWrite(byte[] data,
int offset,
int length,
String remoteName)
throws IOException
remoteWrite in interface IDataStreamIOExceptionpublic boolean remoteClose(String remoteName) throws IOException
remoteClose in interface IDataStreamIOExceptionpublic void remoteStreamReady()
remoteStreamReady in interface IDataStream