On this page
Class AbstractNotificationHandler<T>
- java.lang.Object
-
- com.sun.nio.sctp.AbstractNotificationHandler<T>
- All Implemented Interfaces:
-
NotificationHandler<T>
public class AbstractNotificationHandler<T>
extends Object
implements NotificationHandler<T>
A skeletal handler that consumes notifications and continues.
This class trivially implements the handleNotification methods to return CONTINUE so that all notifications are consumed and the channel continues to try and receive a message.
It also provides overloaded versions of the handleNotification methods, one for each of the required supported notification types, AssociationChangeNotification, PeerAddressChangeNotification, SendFailedNotification, and ShutdownNotification. The appropriate method will be invoked when the notification is received.
- Since:
- 1.7
Constructors
| Modifier | Constructor | Description |
|---|---|---|
protected |
AbstractNotificationHandler() |
Initializes a new instance of this class. |
Methods
| Modifier and Type | Method | Description |
|---|---|---|
HandlerResult |
handleNotification(AssociationChangeNotification notification, T attachment) |
Invoked when an |
HandlerResult |
handleNotification(Notification notification, T attachment) |
Invoked when an implementation specific notification is received from the SCTP stack. |
HandlerResult |
handleNotification(PeerAddressChangeNotification notification, T attachment) |
Invoked when an |
HandlerResult |
handleNotification(SendFailedNotification notification, T attachment) |
Invoked when an |
HandlerResult |
handleNotification(ShutdownNotification notification, T attachment) |
Invoked when an |
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Constructors
AbstractNotificationHandler
protected AbstractNotificationHandler()
Initializes a new instance of this class.
Methods
handleNotification
public HandlerResult handleNotification(Notification notification,
T attachment)
Invoked when an implementation specific notification is received from the SCTP stack.
- Specified by:
handleNotificationin interfaceNotificationHandler<T>- Parameters:
notification- The notificationattachment- The object attached to thereceiveoperation when it was initiated.- Returns:
- The handler result
handleNotification
public HandlerResult handleNotification(AssociationChangeNotification notification,
T attachment)
Invoked when an AssociationChangeNotification is received from the SCTP stack.
- Parameters:
notification- The notificationattachment- The object attached to thereceiveoperation when it was initiated.- Returns:
- The handler result
handleNotification
public HandlerResult handleNotification(PeerAddressChangeNotification notification,
T attachment)
Invoked when an PeerAddressChangeNotification is received from the SCTP stack.
- Parameters:
notification- The notificationattachment- The object attached to thereceiveoperation when it was initiated.- Returns:
- The handler result
handleNotification
public HandlerResult handleNotification(SendFailedNotification notification,
T attachment)
Invoked when an SendFailedNotification is received from the SCTP stack.
- Parameters:
notification- The notificationattachment- The object attached to thereceiveoperation when it was initiated.- Returns:
- The handler result
handleNotification
public HandlerResult handleNotification(ShutdownNotification notification,
T attachment)
Invoked when an ShutdownNotification is received from the SCTP stack.
- Parameters:
notification- The notificationattachment- The object attached to thereceiveoperation when it was initiated.- Returns:
- The handler result
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/jdk.sctp/com/sun/nio/sctp/AbstractNotificationHandler.html