-
- All Superinterfaces:
- AutoCloseable, Channel, Closeable
- All Known Subinterfaces:
- MulticastChannel
- All Known Implementing Classes:
- AsynchronousServerSocketChannel, AsynchronousSocketChannel, DatagramChannel, ServerSocketChannel, SocketChannel
public interface NetworkChannel extends Channel
A channel to a network socket.A channel that implements this interface is a channel to a network socket. The
bind
method is used to bind the socket to a localaddress
, thegetLocalAddress
method returns the address that the socket is bound to, and thesetOption
andgetOption
methods are used to set and query socket options. An implementation of this interface should specify the socket options that it supports.The
bind
andsetOption
methods that do not otherwise have a value to return are specified to return the network channel upon which they are invoked. This allows method invocations to be chained. Implementations of this interface should specialize the return type so that method invocations on the implementation class can be chained.- Since:
- 1.7
-
-
Method Summary
Methods Modifier and Type Method and Description NetworkChannel
bind(SocketAddress local)
Binds the channel's socket to a local address.SocketAddress
getLocalAddress()
Returns the socket address that this channel's socket is bound to, ornull
if the socket is not bound.<T> T
getOption(SocketOption<T> name)
Returns the value of a socket option.<T> NetworkChannel
setOption(SocketOption<T> name, T value)
Sets the value of a socket option.Set<SocketOption<?>>
supportedOptions()
Returns a set of the socket options supported by this channel.
-
-
-
Method Detail
-
bind
NetworkChannel bind(SocketAddress local) throws IOException
Binds the channel's socket to a local address.This method is used to establish an association between the socket and a local address. Once an association is established then the socket remains bound until the channel is closed. If the
local
parameter has the valuenull
then the socket will be bound to an address that is assigned automatically.- Parameters:
local
- The address to bind the socket, ornull
to bind the socket to an automatically assigned socket address- Returns:
- This channel
- Throws:
AlreadyBoundException
- If the socket is already boundUnsupportedAddressTypeException
- If the type of the given address is not supportedClosedChannelException
- If the channel is closedIOException
- If some other I/O error occursSecurityException
- If a security manager is installed and it denies an unspecified permission. An implementation of this interface should specify any required permissions.- See Also:
getLocalAddress()
-
getLocalAddress
SocketAddress getLocalAddress() throws IOException
Returns the socket address that this channel's socket is bound to, ornull
if the socket is not bound.Where the channel is
bound
to an Internet Protocol socket address then the return value from this method is of typeInetSocketAddress
.- Returns:
- The socket address that the socket is bound to, or
null
if the channel's socket is not bound - Throws:
ClosedChannelException
- If the channel is closedIOException
- If an I/O error occurs
-
setOption
<T> NetworkChannel setOption(SocketOption<T> name, T value) throws IOException
Sets the value of a socket option.- Parameters:
name
- The socket optionvalue
- The value of the socket option. A value ofnull
may be a valid value for some socket options.- Returns:
- This channel
- Throws:
UnsupportedOperationException
- If the socket option is not supported by this channelIllegalArgumentException
- If the value is not a valid value for this socket optionClosedChannelException
- If this channel is closedIOException
- If an I/O error occurs- See Also:
StandardSocketOptions
-
getOption
<T> T getOption(SocketOption<T> name) throws IOException
Returns the value of a socket option.- Parameters:
name
- The socket option- Returns:
- The value of the socket option. A value of
null
may be a valid value for some socket options. - Throws:
UnsupportedOperationException
- If the socket option is not supported by this channelClosedChannelException
- If this channel is closedIOException
- If an I/O error occurs- See Also:
StandardSocketOptions
-
supportedOptions
Set<SocketOption<?>> supportedOptions()
Returns a set of the socket options supported by this channel.This method will continue to return the set of options even after the channel has been closed.
- Returns:
- A set of the socket options supported by this channel
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/nio/channels/networkchannel.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.