All Packages Class Hierarchy This Package Previous Next Index
Interface iceberg.APCpath.connectors.StreamConnectorWriterIF
- public interface StreamConnectorWriterIF
- extends Serializable
StreamConnectorWriterIF.java
-
close()
- close a connector after sending a single ADU (connectors
can be re-opened after a close)
-
init()
- init is called when the connector stub is attached to an operator
-
kill()
- kill a connector when it's no longer useful (e.g., the
path is being destroyed)
-
open()
- open a connector for I/O of a single ADU (application data unit)
-
write(byte[])
- writes buf[] bytes to the stream connector.
-
write(byte[], int, int)
-
write
public abstract void write(byte buf[]) throws IOException
- writes buf[] bytes to the stream connector. throws an exception
on failure
write
public abstract void write(byte buf[],
int off,
int len) throws IOException
init
public abstract void init() throws IOException
- init is called when the connector stub is attached to an operator
open
public abstract void open() throws IOException
- open a connector for I/O of a single ADU (application data unit)
close
public abstract void close() throws IOException
- close a connector after sending a single ADU (connectors
can be re-opened after a close)
kill
public abstract void kill() throws IOException
- kill a connector when it's no longer useful (e.g., the
path is being destroyed)
All Packages Class Hierarchy This Package Previous Next Index