FileDocCategorySizeDatePackage
StreamConnection.javaAPI DocJ2ME CLDC 1.11291Wed Feb 05 15:56:00 GMT 2003javax.microedition.io

StreamConnection

public interface StreamConnection implements InputConnection, OutputConnection
This interface defines the capabilities that a stream connection must have.

In a typical implementation of this interface (for instance in MIDP 2.0), all StreamConnections have one underlying InputStream and one OutputStream. Opening a DataInputStream counts as opening an InputStream and opening a DataOutputStream counts as opening an OutputStream. Trying to open another InputStream or OutputStream causes an IOException. Trying to open the InputStream or OutputStream after they have been closed causes an IOException.

The methods of StreamConnection are not synchronized. The only stream method that can be called safely in another thread is close.

author
Nik Shaylor, Antero Taivalsaari
version
12/17/01 (CLDC 1.1)
since
CLDC 1.0

Fields Summary
Constructors Summary
Methods Summary