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()
Object
The 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
IOException
public byte[] remoteRead(int numBytes, String remoteName) throws IOException
remoteRead
in interface IDataStream
IOException
public boolean remoteWrite(byte[] data, int offset, int length, String remoteName) throws IOException
remoteWrite
in interface IDataStream
IOException
public boolean remoteClose(String remoteName) throws IOException
remoteClose
in interface IDataStream
IOException
public void remoteStreamReady()
remoteStreamReady
in interface IDataStream