All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.microedition.io.SocketConnection Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/*

This is not an official specification document, and usage is restricted.

NOTICE


(c) 2005-2007 Sun Microsystems, Inc. All Rights Reserved.

Neither this file nor any files generated from it describe a complete specification, and they may only be used as described below. For example, no permission is given for you to incorporate this file, in whole or in part, in an implementation of a Java specification.

Sun Microsystems Inc. owns the copyright in this file and it is provided to you for informative, as opposed to normative, use. The file and any files generated from it may be used to generate other informative documentation, such as a unified set of documents of API signatures for a platform that includes technologies expressed as Java APIs. The file may also be used to produce "compilation stubs," which allow applications to be compiled and validated for such platforms.

Any work generated from this file, such as unified javadocs or compiled stub files, must be accompanied by this notice in its entirety.

This work corresponds to the API signatures of JSR 219: Foundation Profile 1.1. In the event of a discrepency between this work and the JSR 219 specification, which is available at http://www.jcp.org/en/jsr/detail?id=219, the latter takes precedence. */ package javax.microedition.io; import java.lang.IllegalArgumentException; import java.io.IOException; import java.lang.String; /** * This interface defines the socket stream connection. *

* A socket is accessed using a generic connection string with an explicit host * and port number. The host may be specified as a fully qualified host name or * IPv4 number. * e.g. socket://host.com:79 defines a target socket on the * host.com system at * port 79. *

Note that * RFC1900 recommends the use of names rather than IP numbers for best results * in the event of IP number reassignment.

*

Closing Streams

*

* Every StreamConnection provides a Connection * object as well as an InputStream and OutputStream * to handle the I/O associated with the connection. Each of these interfaces * has its own close() method. For systems that support * duplex communication over the socket connection, closing of the * input or output stream SHOULD shutdown just that side of the * connection. e.g. closing the InputStream will permit the * OutputStream to continue sending data. *

*

* Once the input or output stream has been closed, it can only be reopened * with a call to Connector.open(). The application will receive * an IOException if an attempt is made to reopen the stream. *

*

* BNF Format for Connector.open() string *

*

* The URI must conform to the BNF syntax specified below. If the URI * does not conform to this syntax, an IllegalArgumentException * is thrown. *

* * * * * * * * * * * * * * * * * *
<socket_connection_string> ::= "socket://"<hostport>
<hostport> ::= host ":" port
<host> ::= host name or IP address (omitted for inbound connections, * See ServerSocketConnection) *
<port> ::= numeric port number
*

* Examples *

*

* The following examples show how a SocketConnection * would be used to access a sample loopback program. *

*
 *   SocketConnection sc = (SocketConnection)
 *                         Connector.open("socket://host.com:79");
 *   sc.setSocketOption(SocketConnection.LINGER, 5);
 *
 *   InputStream is  = sc.openInputStream();
 *   OutputStream os = sc.openOutputStream();
 *
 *   os.write("\r\n".getBytes());
 *   int ch = 0;
 *   while(ch != -1) {
 *       ch = is.read();
 *   }
 *
 *   is.close();
 *   os.close();
 *   sc.close();
 * 
* @since MIDP 2.0 */ public interface SocketConnection extends StreamConnection { /** * Socket option for the small buffer writing delay (0). * Set to zero to disable Nagle algorithm for * small buffer operations. * Set to a non-zero value to enable. */ public static final byte DELAY = 0; /** * Socket option for the linger time to wait in seconds * before closing a connection with * pending data output (1). Setting the linger time to zero * disables the linger wait interval. */ public static final byte LINGER = 1; /** * Socket option for the keep alive feature (2). * Setting KEEPALIVE to zero will disable the feature. * Setting KEEPALIVE to a non-zero value will enable the feature. */ public static final byte KEEPALIVE = 2; /** * Socket option for the size of the receiving buffer (3). */ public static final byte RCVBUF = 3; /** * Socket option for the size of the sending buffer (4). */ public static final byte SNDBUF = 4; /** * Set a socket option for the connection. *

* Options inform the low level networking code about intended * usage patterns that the application will use in dealing with * the socket connection. *

*

* Calling setSocketOption to assign buffer sizes * is a hint to the platform of the sizes to set the underlying * network I/O buffers. * Calling getSocketOption can be used to see what * sizes the system is using. * The system MAY adjust the buffer sizes to account for * better throughput available from Maximum Transmission Unit * (MTU) and Maximum Segment Size (MSS) data available * from current network information. *

* * @param option socket option identifier (KEEPALIVE, LINGER, * SNDBUF, RCVBUF, or DELAY) * @param value numeric value for specified option * @exception IllegalArgumentException if the value is not * valid (e.g. negative value) or if the option * identifier is not valid * @exception IOException if the connection was closed * * @see #getSocketOption */ public void setSocketOption(byte option, int value) throws java.lang.IllegalArgumentException, IOException; /** * Get a socket option for the connection. * * @param option socket option identifier (KEEPALIVE, LINGER, * SNDBUF, RCVBUF, or DELAY) * @return numeric value for specified option or -1 if the * value is not available. * @exception IllegalArgumentException if the option identifier is * not valid * @exception IOException if the connection was closed * @see #setSocketOption */ public int getSocketOption(byte option) throws java.lang.IllegalArgumentException, IOException; /** * Gets the local address to which the socket is bound. * *

The host address(IP number) that can be used to connect to this * end of the socket connection from an external system. * Since IP addresses may be dynamically assigned, a remote application * will need to be robust in the face of IP number reasssignment.

*

The local hostname (if available) can be accessed from * System.getProperty("microedition.hostname") *

* * @return the local address to which the socket is bound. * @exception IOException if the connection was closed. * @see ServerSocketConnection */ public java.lang.String getLocalAddress() throws IOException; /** * Returns the local port to which this socket is bound. * * @return the local port number to which this socket is connected. * @exception IOException if the connection was closed. * @see ServerSocketConnection */ public int getLocalPort() throws IOException; /** * Gets the remote address to which the socket is bound. * The address can be either the remote host name or the IP * address(if available). * * @return the remote address to which the socket is bound. * @exception IOException if the connection was closed. */ public java.lang.String getAddress() throws IOException; /** * Returns the remote port to which this socket is bound. * * @return the remote port number to which this socket is connected. * @exception IOException if the connection was closed. */ public int getPort() throws IOException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy