Java.Net.SocketImpl: Method Members

The methods of Java.Net.SocketImpl are listed below. For a list of all members, see the SocketImpl Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

abstract
GetOption(int) : Java.Lang.Object
Documentation for this section has not yet been entered.
abstract
SetOption(int, Java.Lang.Object)
Documentation for this section has not yet been entered.

Protected Methods

abstract
Accept(SocketImpl)
Waits for an incoming request and blocks until the connection is opened on the given socket.
AcceptAsync(SocketImpl) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
abstract
Available() : int
Returns the available number of bytes which are readable from this socket without blocking.
abstract
Bind(InetAddress, int)
Binds this socket to the specified local host address and port number.
abstract
Close()
Closes this socket.
abstract
Connect(InetAddress, int)
Connects this socket to the specified remote host address and port number.
abstract
Connect(SocketAddress, int)
Connects this socket to the remote host address and port number specified by the SocketAddress object with the given timeout.
abstract
Connect(string, int)
Connects this socket to the specified remote host and port number.
ConnectAsync(InetAddress, int) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
ConnectAsync(SocketAddress, int) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
ConnectAsync(string, int) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
abstract
Create(bool)
Creates a new unconnected socket.
abstract
Listen(int)
Listens for connection requests on this streaming socket.
abstract
SendUrgentData(int)
Sends the single byte of urgent data on the socket.
SendUrgentDataAsync(int) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
SetPerformancePreferences(int, int, int)
Sets performance preference for connection time, latency and bandwidth.
ShutdownInput()
Closes the input channel of this socket.
ShutdownOutput()
Closes the output channel of this socket.
SupportsUrgentData() : bool
Returns whether the socket supports urgent data or not.