public abstract class SctpServerChannel extends AbstractSelectableChannel
Modifier | Constructor and Description |
---|---|
protected |
SctpServerChannel(SelectorProvider provider) |
Modifier and Type | Method and Description |
---|---|
abstract SctpChannel |
accept() |
abstract SctpServerChannel |
bind(SocketAddress local) |
abstract SctpServerChannel |
bind(SocketAddress local,
int backlog) |
abstract SctpServerChannel |
bindAddress(InetAddress inetAddress) |
abstract Set<SocketAddress> |
getAllLocalAddresses() |
abstract <T> T |
getOption(SctpSocketOption<T> name) |
static SctpServerChannel |
open() |
abstract <T> SctpServerChannel |
setOption(SctpSocketOption<T> name,
T value) |
abstract SctpServerChannel |
unbindAddress(InetAddress inetAddress) |
blockingLock, configureBlocking, implCloseChannel, implCloseSelectableChannel, implConfigureBlocking, isBlocking, isRegistered, keyFor, provider, register
register, validOps
begin, close, end, isOpen
protected SctpServerChannel(SelectorProvider provider)
public static SctpServerChannel open() throws IOException
IOException
public abstract <T> T getOption(SctpSocketOption<T> name) throws IOException
IOException
public abstract <T> SctpServerChannel setOption(SctpSocketOption<T> name, T value) throws IOException
IOException
public abstract Set<SocketAddress> getAllLocalAddresses() throws IOException
IOException
public abstract SctpServerChannel bind(SocketAddress local) throws IOException
IOException
public abstract SctpServerChannel bind(SocketAddress local, int backlog) throws IOException
IOException
public abstract SctpServerChannel bindAddress(InetAddress inetAddress) throws IOException
IOException
public abstract SctpServerChannel unbindAddress(InetAddress inetAddress) throws IOException
IOException
public abstract SctpChannel accept() throws IOException
IOException
Copyright © 2008-2016 The Netty Project. All Rights Reserved.