Class AbstractNotificationHandler<T>
- All Implemented Interfaces:
NotificationHandler<T>
public class AbstractNotificationHandler<T> extends Object implements NotificationHandler<T>
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
Constructor Summary
| Modifier | Constructor | Description |
|---|---|---|
protected |
Initializes a new instance of this class. |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
HandlerResult |
handleNotification |
Invoked when an AssociationChangeNotification is received from the SCTP stack. |
HandlerResult |
handleNotification |
Invoked when an implementation specific notification is received from the SCTP stack. |
HandlerResult |
handleNotification |
Invoked when an PeerAddressChangeNotification is received from the SCTP stack. |
HandlerResult |
handleNotification |
Invoked when an SendFailedNotification is received from the SCTP stack. |
HandlerResult |
handleNotification |
Invoked when an ShutdownNotification is received from the SCTP stack. |
Constructor Details
AbstractNotificationHandler
protected AbstractNotificationHandler()
Method Details
handleNotification
public HandlerResult handleNotification(Notification notification, T attachment)
- Specified by:
-
handleNotificationin interfaceNotificationHandler<T> - Parameters:
-
notification- The notification -
attachment- The object attached to thereceiveoperation when it was initiated. - Returns:
- The handler result
handleNotification
public HandlerResult handleNotification(AssociationChangeNotification notification, T attachment)
AssociationChangeNotification is received from the SCTP stack.- Parameters:
-
notification- The notification -
attachment- The object attached to thereceiveoperation when it was initiated. - Returns:
- The handler result
handleNotification
public HandlerResult handleNotification(PeerAddressChangeNotification notification, T attachment)
PeerAddressChangeNotification is received from the SCTP stack.- Parameters:
-
notification- The notification -
attachment- The object attached to thereceiveoperation when it was initiated. - Returns:
- The handler result
handleNotification
public HandlerResult handleNotification(SendFailedNotification notification, T attachment)
SendFailedNotification is received from the SCTP stack.- Parameters:
-
notification- The notification -
attachment- The object attached to thereceiveoperation when it was initiated. - Returns:
- The handler result
handleNotification
public HandlerResult handleNotification(ShutdownNotification notification, T attachment)
ShutdownNotification is received from the SCTP stack.- Parameters:
-
notification- The notification -
attachment- The object attached to thereceiveoperation when it was initiated. - Returns:
- The handler result
© 1993, 2021, 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/17/docs/api/jdk.sctp/com/sun/nio/sctp/AbstractNotificationHandler.html