"

2013 FRC Java API

"

javax.microedition.io
Interface Connection

All Known Subinterfaces:
ClasspathConnection, ContentConnection, DatagramConnection, FileConnection, HttpConnection, InputConnection, MulticastConnection, OutputConnection, ServerSocketConnection, SocketConnection, StreamConnection, StreamConnectionNotifier, UDPDatagramConnection
All Known Implementing Classes:
ConnectionBase, ConnectionBaseAdapter, Protocol, Protocol, Protocol, Protocol, Protocol, Protocol, Protocol, Protocol

public interface Connection

This is the most basic type of generic connection. Only the close method is defined. No open method is defined here because opening is always done using the Connector.open() methods.

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

Method Summary
 void close()
          Close the connection.
 

Method Detail

close

void close()
           throws IOException
Close the connection.

When a connection has been closed, access to any of its methods that involve an I/O operation will cause an IOException to be thrown. Closing an already closed connection has no effect. Streams derived from the connection may be open when method is called. Any open streams will cause the connection to be held open until they themselves are closed. In this latter case access to the open streams is permitted, but access to the connection is not.

Throws:
IOException - If an I/O error occurs

"

2013 FRC Java API

"

"
For updated information see the Java FRC site
"