Home | History | Annotate | Download | only in channels

Lines Matching defs:bind

41  * by invoking the {@link #bind(SocketAddress,int) bind} method. Once bound,
75 * AsynchronousServerSocketChannel.open().bind(new InetSocketAddress(5000));
175 * bind(local, 0);
179 * The local address to bind the socket, or <tt>null</tt> to bind
190 public final AsynchronousServerSocketChannel bind(SocketAddress local)
193 return bind(local, 0);
212 * The local address to bind the socket, or {@code null} to bind
231 public abstract AsynchronousServerSocketChannel bind(SocketAddress local, int backlog)