SunSPOT API V5.0


javax.microedition.io
Interface StreamConnection

All Superinterfaces:
Connection, InputConnection, OutputConnection
All Known Subinterfaces:
ContentConnection, HttpConnection, RadioConnection, RadiostreamConnection, RemotePrintConnection
All Known Implementing Classes:
Protocol, Protocol, Protocol, Protocol, Protocol, Protocol

public interface StreamConnection
extends InputConnection, OutputConnection

This interface defines the capabilities that a stream connection must have.

In a typical implementation of this interface (for instance in MIDP), 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.

Since:
CLDC 1.0
Version:
12/17/01 (CLDC 1.1)

Method Summary
 
Methods inherited from interface javax.microedition.io.InputConnection
openDataInputStream, openInputStream
 
Methods inherited from interface javax.microedition.io.Connection
close
 
Methods inherited from interface javax.microedition.io.OutputConnection
openDataOutputStream, openOutputStream
 
Methods inherited from interface javax.microedition.io.Connection
close
 


SunSPOT API V5.0


Copyright � 2006-2008 Sun Microsystems, Inc. All Rights Reserved.