Uses of Interface
com.sun.nio.sctp.NotificationHandler
-
Packages that use NotificationHandler Package Description com.sun.nio.sctp This package is only included to let SCTP also compile on non-unix operation systems.io.netty.channel.sctp Abstract SCTP socket interfaces which extend the core channel API.io.netty.channel.sctp.nio NIO-based SCTP Channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.sctp.oio Old blocking I/O based SCTP channel API implementation - recommended for a small number of connections (< 1000). -
-
Uses of NotificationHandler in com.sun.nio.sctp
Classes in com.sun.nio.sctp that implement NotificationHandler Modifier and Type Class Description class
AbstractNotificationHandler<T>
Methods in com.sun.nio.sctp with parameters of type NotificationHandler Modifier and Type Method Description abstract <T> MessageInfo
SctpChannel. receive(java.nio.ByteBuffer dst, T attachment, NotificationHandler<T> handler)
-
Uses of NotificationHandler in io.netty.channel.sctp
Classes in io.netty.channel.sctp that implement NotificationHandler Modifier and Type Class Description class
SctpNotificationHandler
AbstractNotificationHandler
implementation which will handle allNotification
s by trigger aNotification
user event in theChannelPipeline
of aSctpChannel
. -
Uses of NotificationHandler in io.netty.channel.sctp.nio
Fields in io.netty.channel.sctp.nio declared as NotificationHandler Modifier and Type Field Description private NotificationHandler<?>
NioSctpChannel. notificationHandler
-
Uses of NotificationHandler in io.netty.channel.sctp.oio
Fields in io.netty.channel.sctp.oio declared as NotificationHandler Modifier and Type Field Description private NotificationHandler<?>
OioSctpChannel. notificationHandler
Deprecated.
-