java.net
Class SocketImpl

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.net.SocketImpl
All Implemented Interfaces:
SocketOptions sample code for java.net.SocketOptions definition code for java.net.SocketOptions

public abstract class SocketImpl
extends Object sample code for java.lang.Object definition code for java.lang.Object
implements SocketOptions sample code for java.net.SocketOptions definition code for java.net.SocketOptions

The abstract class SocketImpl is a common superclass of all classes that actually implement sockets. It is used to create both client and server sockets.

A "plain" socket implements these methods exactly as described, without attempting to go through a firewall or proxy.

Since:
JDK1.0

Field Summary
protected  InetAddress sample code for java.net.InetAddress definition code for java.net.InetAddress address sample code for java.net.SocketImpl.address definition code for java.net.SocketImpl.address
          The IP address of the remote end of this socket.
protected  FileDescriptor sample code for java.io.FileDescriptor definition code for java.io.FileDescriptor fd sample code for java.net.SocketImpl.fd definition code for java.net.SocketImpl.fd
          The file descriptor object for this socket.
protected  int localport sample code for java.net.SocketImpl.localport definition code for java.net.SocketImpl.localport
          The local port number to which this socket is connected.
protected  int port sample code for java.net.SocketImpl.port definition code for java.net.SocketImpl.port
          The port number on the remote host to which this socket is connected.
 
Fields inherited from interface java.net.SocketOptions sample code for java.net.SocketOptions definition code for java.net.SocketOptions
IP_MULTICAST_IF sample code for java.net.SocketOptions.IP_MULTICAST_IF definition code for java.net.SocketOptions.IP_MULTICAST_IF , IP_MULTICAST_IF2 sample code for java.net.SocketOptions.IP_MULTICAST_IF2 definition code for java.net.SocketOptions.IP_MULTICAST_IF2 , IP_MULTICAST_LOOP sample code for java.net.SocketOptions.IP_MULTICAST_LOOP definition code for java.net.SocketOptions.IP_MULTICAST_LOOP , IP_TOS sample code for java.net.SocketOptions.IP_TOS definition code for java.net.SocketOptions.IP_TOS , SO_BINDADDR sample code for java.net.SocketOptions.SO_BINDADDR definition code for java.net.SocketOptions.SO_BINDADDR , SO_BROADCAST sample code for java.net.SocketOptions.SO_BROADCAST definition code for java.net.SocketOptions.SO_BROADCAST , SO_KEEPALIVE sample code for java.net.SocketOptions.SO_KEEPALIVE definition code for java.net.SocketOptions.SO_KEEPALIVE , SO_LINGER sample code for java.net.SocketOptions.SO_LINGER definition code for java.net.SocketOptions.SO_LINGER , SO_OOBINLINE sample code for java.net.SocketOptions.SO_OOBINLINE definition code for java.net.SocketOptions.SO_OOBINLINE , SO_RCVBUF sample code for java.net.SocketOptions.SO_RCVBUF definition code for java.net.SocketOptions.SO_RCVBUF , SO_REUSEADDR sample code for java.net.SocketOptions.SO_REUSEADDR definition code for java.net.SocketOptions.SO_REUSEADDR , SO_SNDBUF sample code for java.net.SocketOptions.SO_SNDBUF definition code for java.net.SocketOptions.SO_SNDBUF , SO_TIMEOUT sample code for java.net.SocketOptions.SO_TIMEOUT definition code for java.net.SocketOptions.SO_TIMEOUT , TCP_NODELAY sample code for java.net.SocketOptions.TCP_NODELAY definition code for java.net.SocketOptions.TCP_NODELAY
 
Constructor Summary
SocketImpl sample code for java.net.SocketImpl.SocketImpl() definition code for java.net.SocketImpl.SocketImpl() ()
           
 
Method Summary
protected abstract  void accept sample code for java.net.SocketImpl.accept(java.net.SocketImpl) definition code for java.net.SocketImpl.accept(java.net.SocketImpl) (SocketImpl sample code for java.net.SocketImpl definition code for java.net.SocketImpl  s)
          Accepts a connection.
protected abstract  int available sample code for java.net.SocketImpl.available() definition code for java.net.SocketImpl.available() ()
          Returns the number of bytes that can be read from this socket without blocking.
protected abstract  void bind sample code for java.net.SocketImpl.bind(java.net.InetAddress, int) definition code for java.net.SocketImpl.bind(java.net.InetAddress, int) (InetAddress sample code for java.net.InetAddress definition code for java.net.InetAddress  host, int port)
          Binds this socket to the specified local IP address and port number.
protected abstract  void close sample code for java.net.SocketImpl.close() definition code for java.net.SocketImpl.close() ()
          Closes this socket.
protected abstract  void connect sample code for java.net.SocketImpl.connect(java.net.InetAddress, int) definition code for java.net.SocketImpl.connect(java.net.InetAddress, int) (InetAddress sample code for java.net.InetAddress definition code for java.net.InetAddress  address, int port)
          Connects this socket to the specified port number on the specified host.
protected abstract  void connect sample code for java.net.SocketImpl.connect(java.net.SocketAddress, int) definition code for java.net.SocketImpl.connect(java.net.SocketAddress, int) (SocketAddress sample code for java.net.SocketAddress definition code for java.net.SocketAddress  address, int timeout)
          Connects this socket to the specified port number on the specified host.
protected abstract  void connect sample code for java.net.SocketImpl.connect(java.lang.String, int) definition code for java.net.SocketImpl.connect(java.lang.String, int) (String sample code for java.lang.String definition code for java.lang.String  host, int port)
          Connects this socket to the specified port on the named host.
protected abstract  void create sample code for java.net.SocketImpl.create(boolean) definition code for java.net.SocketImpl.create(boolean) (boolean stream)
          Creates either a stream or a datagram socket.
protected  FileDescriptor sample code for java.io.FileDescriptor definition code for java.io.FileDescriptor getFileDescriptor sample code for java.net.SocketImpl.getFileDescriptor() definition code for java.net.SocketImpl.getFileDescriptor() ()
          Returns the value of this socket's fd field.
protected  InetAddress sample code for java.net.InetAddress definition code for java.net.InetAddress getInetAddress sample code for java.net.SocketImpl.getInetAddress() definition code for java.net.SocketImpl.getInetAddress() ()
          Returns the value of this socket's address field.
protected abstract  InputStream sample code for java.io.InputStream definition code for java.io.InputStream getInputStream sample code for java.net.SocketImpl.getInputStream() definition code for java.net.SocketImpl.getInputStream() ()
          Returns an input stream for this socket.
protected  int getLocalPort sample code for java.net.SocketImpl.getLocalPort() definition code for java.net.SocketImpl.getLocalPort() ()
          Returns the value of this socket's localport field.
protected abstract  OutputStream sample code for java.io.OutputStream definition code for java.io.OutputStream getOutputStream sample code for java.net.SocketImpl.getOutputStream() definition code for java.net.SocketImpl.getOutputStream() ()
          Returns an output stream for this socket.
protected  int getPort sample code for java.net.SocketImpl.getPort() definition code for java.net.SocketImpl.getPort() ()
          Returns the value of this socket's port field.
protected abstract  void listen sample code for java.net.SocketImpl.listen(int) definition code for java.net.SocketImpl.listen(int) (int backlog)
          Sets the maximum queue length for incoming connection indications (a request to connect) to the count argument.
protected abstract  void sendUrgentData sample code for java.net.SocketImpl.sendUrgentData(int) definition code for java.net.SocketImpl.sendUrgentData(int) (int data)
          Send one byte of urgent data on the socket.
protected  void setPerformancePreferences sample code for java.net.SocketImpl.setPerformancePreferences(int, int, int) definition code for java.net.SocketImpl.setPerformancePreferences(int, int, int) (int connectionTime, int latency, int bandwidth)
          Sets performance preferences for this socket.
protected  void shutdownInput sample code for java.net.SocketImpl.shutdownInput() definition code for java.net.SocketImpl.shutdownInput() ()
          Places the input stream for this socket at "end of stream".
protected  void shutdownOutput sample code for java.net.SocketImpl.shutdownOutput() definition code for java.net.SocketImpl.shutdownOutput() ()
          Disables the output stream for this socket.
protected  boolean supportsUrgentData sample code for java.net.SocketImpl.supportsUrgentData() definition code for java.net.SocketImpl.supportsUrgentData() ()
          Returns whether or not this SocketImpl supports sending urgent data.
 String sample code for java.lang.String definition code for java.lang.String toString sample code for java.net.SocketImpl.toString() definition code for java.net.SocketImpl.toString() ()
          Returns the address and port of this socket as a String.
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 
Methods inherited from interface java.net.SocketOptions sample code for java.net.SocketOptions definition code for java.net.SocketOptions
getOption sample code for java.net.SocketOptions.getOption(int) definition code for java.net.SocketOptions.getOption(int) , setOption sample code for java.net.SocketOptions.setOption(int, java.lang.Object) definition code for java.net.SocketOptions.setOption(int, java.lang.Object)
 

Field Detail

fd sample code for java.net.SocketImpl.fd

protected FileDescriptor sample code for java.io.FileDescriptor definition code for java.io.FileDescriptor  fd
The file descriptor object for this socket.


address sample code for java.net.SocketImpl.address

protected InetAddress sample code for java.net.InetAddress definition code for java.net.InetAddress  address
The IP address of the remote end of this socket.


port sample code for java.net.SocketImpl.port

protected int port
The port number on the remote host to which this socket is connected.


localport sample code for java.net.SocketImpl.localport

protected int localport
The local port number to which this socket is connected.

Constructor Detail

SocketImpl sample code for java.net.SocketImpl() definition code for java.net.SocketImpl()

public SocketImpl()
Method Detail

create sample code for java.net.SocketImpl.create(boolean) definition code for java.net.SocketImpl.create(boolean)

protected abstract void create(boolean stream)
                        throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Creates either a stream or a datagram socket.

Parameters:
stream - if true, create a stream socket; otherwise, create a datagram socket.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs while creating the socket.

connect sample code for java.net.SocketImpl.connect(java.lang.String, int) definition code for java.net.SocketImpl.connect(java.lang.String, int)

protected abstract void connect(String sample code for java.lang.String definition code for java.lang.String  host,
                                int port)
                         throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Connects this socket to the specified port on the named host.

Parameters:
host - the name of the remote host.
port - the port number.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs when connecting to the remote host.

connect sample code for java.net.SocketImpl.connect(java.net.InetAddress, int) definition code for java.net.SocketImpl.connect(java.net.InetAddress, int)

protected abstract void connect(InetAddress sample code for java.net.InetAddress definition code for java.net.InetAddress  address,
                                int port)
                         throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Connects this socket to the specified port number on the specified host.

Parameters:
address - the IP address of the remote host.
port - the port number.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs when attempting a connection.

connect sample code for java.net.SocketImpl.connect(java.net.SocketAddress, int) definition code for java.net.SocketImpl.connect(java.net.SocketAddress, int)

protected abstract void connect(SocketAddress sample code for java.net.SocketAddress definition code for java.net.SocketAddress  address,
                                int timeout)
                         throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Connects this socket to the specified port number on the specified host. A timeout of zero is interpreted as an infinite timeout. The connection will then block until established or an error occurs.

Parameters:
address - the Socket address of the remote host.
timeout - the timeout value, in milliseconds, or zero for no timeout.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs when attempting a connection.
Since:
1.4

bind sample code for java.net.SocketImpl.bind(java.net.InetAddress, int) definition code for java.net.SocketImpl.bind(java.net.InetAddress, int)

protected abstract void bind(InetAddress sample code for java.net.InetAddress definition code for java.net.InetAddress  host,
                             int port)
                      throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Binds this socket to the specified local IP address and port number.

Parameters:
host - an IP address that belongs to a local interface.
port - the port number.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs when binding this socket.

listen sample code for java.net.SocketImpl.listen(int) definition code for java.net.SocketImpl.listen(int)

protected abstract void listen(int backlog)
                        throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Sets the maximum queue length for incoming connection indications (a request to connect) to the count argument. If a connection indication arrives when the queue is full, the connection is refused.

Parameters:
backlog - the maximum length of the queue.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs when creating the queue.

accept sample code for java.net.SocketImpl.accept(java.net.SocketImpl) definition code for java.net.SocketImpl.accept(java.net.SocketImpl)

protected abstract void accept(SocketImpl sample code for java.net.SocketImpl definition code for java.net.SocketImpl  s)
                        throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Accepts a connection.

Parameters:
s - the accepted connection.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs when accepting the connection.

getInputStream sample code for java.net.SocketImpl.getInputStream() definition code for java.net.SocketImpl.getInputStream()

protected abstract InputStream sample code for java.io.InputStream definition code for java.io.InputStream  getInputStream()
                                       throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Returns an input stream for this socket.

Returns:
a stream for reading from this socket.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs when creating the input stream.

getOutputStream sample code for java.net.SocketImpl.getOutputStream() definition code for java.net.SocketImpl.getOutputStream()

protected abstract OutputStream sample code for java.io.OutputStream definition code for java.io.OutputStream  getOutputStream()
                                         throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Returns an output stream for this socket.

Returns:
an output stream for writing to this socket.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs when creating the output stream.

available sample code for java.net.SocketImpl.available() definition code for java.net.SocketImpl.available()

protected abstract int available()
                          throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Returns the number of bytes that can be read from this socket without blocking.

Returns:
the number of bytes that can be read from this socket without blocking.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs when determining the number of bytes available.

close sample code for java.net.SocketImpl.close() definition code for java.net.SocketImpl.close()

protected abstract void close()
                       throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Closes this socket.

Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs when closing this socket.

shutdownInput sample code for java.net.SocketImpl.shutdownInput() definition code for java.net.SocketImpl.shutdownInput()

protected void shutdownInput()
                      throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Places the input stream for this socket at "end of stream". Any data sent to this socket is acknowledged and then silently discarded. If you read from a socket input stream after invoking shutdownInput() on the socket, the stream will return EOF.

Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs when shutting down this socket.
See Also:
Socket.shutdownOutput() sample code for java.net.Socket.shutdownOutput() definition code for java.net.Socket.shutdownOutput() , Socket.close() sample code for java.net.Socket.close() definition code for java.net.Socket.close() , Socket.setSoLinger(boolean, int) sample code for java.net.Socket.setSoLinger(boolean, int) definition code for java.net.Socket.setSoLinger(boolean, int)

shutdownOutput sample code for java.net.SocketImpl.shutdownOutput() definition code for java.net.SocketImpl.shutdownOutput()

protected void shutdownOutput()
                       throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Disables the output stream for this socket. For a TCP socket, any previously written data will be sent followed by TCP's normal connection termination sequence. If you write to a socket output stream after invoking shutdownOutput() on the socket, the stream will throw an IOException.

Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs when shutting down this socket.
See Also:
Socket.shutdownInput() sample code for java.net.Socket.shutdownInput() definition code for java.net.Socket.shutdownInput() , Socket.close() sample code for java.net.Socket.close() definition code for java.net.Socket.close() , Socket.setSoLinger(boolean, int) sample code for java.net.Socket.setSoLinger(boolean, int) definition code for java.net.Socket.setSoLinger(boolean, int)

getFileDescriptor sample code for java.net.SocketImpl.getFileDescriptor() definition code for java.net.SocketImpl.getFileDescriptor()

protected FileDescriptor sample code for java.io.FileDescriptor definition code for java.io.FileDescriptor  getFileDescriptor()
Returns the value of this socket's fd field.

Returns:
the value of this socket's fd field.
See Also:
fd sample code for java.net.SocketImpl.fd definition code for java.net.SocketImpl.fd

getInetAddress sample code for java.net.SocketImpl.getInetAddress() definition code for java.net.SocketImpl.getInetAddress()

protected InetAddress sample code for java.net.InetAddress definition code for java.net.InetAddress  getInetAddress()
Returns the value of this socket's address field.

Returns:
the value of this socket's address field.
See Also:
address sample code for java.net.SocketImpl.address definition code for java.net.SocketImpl.address

getPort sample code for java.net.SocketImpl.getPort() definition code for java.net.SocketImpl.getPort()

protected int getPort()
Returns the value of this socket's port field.

Returns:
the value of this socket's port field.
See Also:
port sample code for java.net.SocketImpl.port definition code for java.net.SocketImpl.port

supportsUrgentData sample code for java.net.SocketImpl.supportsUrgentData() definition code for java.net.SocketImpl.supportsUrgentData()

protected boolean supportsUrgentData()
Returns whether or not this SocketImpl supports sending urgent data. By default, false is returned unless the method is overridden in a sub-class

Returns:
true if urgent data supported
Since:
1.4
See Also:
address sample code for java.net.SocketImpl.address definition code for java.net.SocketImpl.address

sendUrgentData sample code for java.net.SocketImpl.sendUrgentData(int) definition code for java.net.SocketImpl.sendUrgentData(int)

protected abstract void sendUrgentData(int data)
                                throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Send one byte of urgent data on the socket. The byte to be sent is the low eight bits of the parameter

Parameters:
data - The byte of data to send
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if there is an error sending the data.
Since:
1.4

getLocalPort sample code for java.net.SocketImpl.getLocalPort() definition code for java.net.SocketImpl.getLocalPort()

protected int getLocalPort()
Returns the value of this socket's localport field.

Returns:
the value of this socket's localport field.
See Also:
localport sample code for java.net.SocketImpl.localport definition code for java.net.SocketImpl.localport

toString sample code for java.net.SocketImpl.toString() definition code for java.net.SocketImpl.toString()

public String sample code for java.lang.String definition code for java.lang.String  toString()
Returns the address and port of this socket as a String.

Overrides:
toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() in class Object sample code for java.lang.Object definition code for java.lang.Object
Returns:
a string representation of this socket.

setPerformancePreferences sample code for java.net.SocketImpl.setPerformancePreferences(int, int, int) definition code for java.net.SocketImpl.setPerformancePreferences(int, int, int)

protected void setPerformancePreferences(int connectionTime,
                                         int latency,
                                         int bandwidth)
Sets performance preferences for this socket.

Sockets use the TCP/IP protocol by default. Some implementations may offer alternative protocols which have different performance characteristics than TCP/IP. This method allows the application to express its own preferences as to how these tradeoffs should be made when the implementation chooses from the available protocols.

Performance preferences are described by three integers whose values indicate the relative importance of short connection time, low latency, and high bandwidth. The absolute values of the integers are irrelevant; in order to choose a protocol the values are simply compared, with larger values indicating stronger preferences. Negative values represent a lower priority than positive values. If the application prefers short connection time over both low latency and high bandwidth, for example, then it could invoke this method with the values (1, 0, 0). If the application prefers high bandwidth above low latency, and low latency above short connection time, then it could invoke this method with the values (0, 1, 2). By default, this method does nothing, unless it is overridden in a a sub-class.

Parameters:
connectionTime - An int expressing the relative importance of a short connection time
latency - An int expressing the relative importance of low latency
bandwidth - An int expressing the relative importance of high bandwidth
Since:
1.5