public interface StreamConnection extends InputConnection, OutputConnection
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.
openDataInputStream, openInputStreamopenDataOutputStream, openOutputStreamcloseCopyright © 2013, Oracle and/or its affiliates. All rights reserved.
Use is subject to License Terms. Your use of this web site or any of its contents or software indicates your agreement to be bound by these License Terms.