Partager via


ServerSocketChannel.Open Méthode

Définition

Ouvre un canal de socket de serveur.

[Android.Runtime.Register("open", "()Ljava/nio/channels/ServerSocketChannel;", "")]
public static Java.Nio.Channels.ServerSocketChannel? Open ();
[<Android.Runtime.Register("open", "()Ljava/nio/channels/ServerSocketChannel;", "")>]
static member Open : unit -> Java.Nio.Channels.ServerSocketChannel

Retours

Un nouveau canal de socket

Attributs

Exceptions

si une erreur d’E/S se produit.

Remarques

Ouvre un canal de socket de serveur.

Le nouveau canal est créé en appelant la java.nio.channels.spi.SelectorProvider#openServerSocketChannel openServerSocketChannel méthode de l’objet par défaut java.nio.channels.spi.SelectorProvider à l’échelle du système.

Le socket du nouveau canal est initialement indépendant ; elle doit être liée à une adresse spécifique via l’une des méthodes de son socket avant que java.net.ServerSocket#bind(SocketAddress) bind les connexions ne puissent être acceptées.

Documentation Java pour java.nio.channels.ServerSocketChannel.open().

Les parties de cette page sont des modifications basées sur le travail créé et partagé par le projet Android Open Source et utilisés en fonction des termes décrits dans la licence d’attribution Creative Commons 2.5.

S’applique à