Home / Class/ AbstractNotificationHandler Class — netty Architecture

AbstractNotificationHandler Class — netty Architecture

Architecture documentation for the AbstractNotificationHandler class in AbstractNotificationHandler.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  12058443_3806_b7a6_1cba_6b0338b11ba3["AbstractNotificationHandler"]
  ad2ec4a4_b44e_a1b0_348a_6397da7e620a["AbstractNotificationHandler.java"]
  12058443_3806_b7a6_1cba_6b0338b11ba3 -->|defined in| ad2ec4a4_b44e_a1b0_348a_6397da7e620a
  bf0250a9_c628_7c5f_efdc_4348fe7a96d0["HandlerResult()"]
  12058443_3806_b7a6_1cba_6b0338b11ba3 -->|method| bf0250a9_c628_7c5f_efdc_4348fe7a96d0

Relationship Graph

Source Code

transport-sctp/src/main/java/com/sun/nio/sctp/AbstractNotificationHandler.java lines 18–43

@SuppressWarnings("all")
public class AbstractNotificationHandler<T> implements NotificationHandler<T> {
    static {
        UnsupportedOperatingSystemException.raise();
    }

    public HandlerResult handleNotification(AssociationChangeNotification notification, Object o) {
        return null;
    }

    public HandlerResult handleNotification(Notification notification, Object o) {
        return null;
    }

    public HandlerResult handleNotification(PeerAddressChangeNotification notification, Object o) {
        return null;
    }

    public HandlerResult handleNotification(SendFailedNotification notification, Object o) {
        return null;
    }

    public HandlerResult handleNotification(ShutdownNotification notification, Object o) {
        return null;
    }
}

Frequently Asked Questions

What is the AbstractNotificationHandler class?
AbstractNotificationHandler is a class in the netty codebase, defined in transport-sctp/src/main/java/com/sun/nio/sctp/AbstractNotificationHandler.java.
Where is AbstractNotificationHandler defined?
AbstractNotificationHandler is defined in transport-sctp/src/main/java/com/sun/nio/sctp/AbstractNotificationHandler.java at line 18.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free