java.nio.channels

Interface NetworkChannel

    • 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 value null then the socket will be bound to an address that is assigned automatically.

        Parameters:
        local - The address to bind the socket, or null to bind the socket to an automatically assigned socket address
        Returns:
        This channel
        Throws:
        AlreadyBoundException - If the socket is already bound
        UnsupportedAddressTypeException - If the type of the given address is not supported
        ClosedChannelException - If the channel is closed
        IOException - If some other I/O error occurs
        SecurityException - 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, or null 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 type InetSocketAddress.

        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 closed
        IOException - If an I/O error occurs
      • 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

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Document créé le 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/nio/channels/NetworkChannel.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.

Table des matières Haut