Home / Function/ notifyOutboundHandlerException() — netty Function Reference

notifyOutboundHandlerException() — netty Function Reference

Architecture documentation for the notifyOutboundHandlerException() function in AbstractChannelHandlerContext.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  b1146ab2_830a_2f47_42f2_bc9ab969ab97["notifyOutboundHandlerException()"]
  219fdd98_e8e7_d4f7_fea0_eba60352e3de["AbstractChannelHandlerContext"]
  b1146ab2_830a_2f47_42f2_bc9ab969ab97 -->|defined in| 219fdd98_e8e7_d4f7_fea0_eba60352e3de
  ecdd9021_5139_5faf_c9e9_00ec51590b75["ChannelFuture()"]
  ecdd9021_5139_5faf_c9e9_00ec51590b75 -->|calls| b1146ab2_830a_2f47_42f2_bc9ab969ab97
  99283ae3_ac1e_c2ab_31c8_7eec0221bc1c["write()"]
  99283ae3_ac1e_c2ab_31c8_7eec0221bc1c -->|calls| b1146ab2_830a_2f47_42f2_bc9ab969ab97
  style b1146ab2_830a_2f47_42f2_bc9ab969ab97 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport/src/main/java/io/netty/channel/AbstractChannelHandlerContext.java lines 862–866

    private static void notifyOutboundHandlerException(Throwable cause, ChannelPromise promise) {
        // Only log if the given promise is not of type VoidChannelPromise as tryFailure(...) is expected to return
        // false.
        PromiseNotificationUtil.tryFailure(promise, cause, promise instanceof VoidChannelPromise ? null : logger);
    }

Domain

Subdomains

Frequently Asked Questions

What does notifyOutboundHandlerException() do?
notifyOutboundHandlerException() is a function in the netty codebase, defined in transport/src/main/java/io/netty/channel/AbstractChannelHandlerContext.java.
Where is notifyOutboundHandlerException() defined?
notifyOutboundHandlerException() is defined in transport/src/main/java/io/netty/channel/AbstractChannelHandlerContext.java at line 862.
What calls notifyOutboundHandlerException()?
notifyOutboundHandlerException() is called by 2 function(s): ChannelFuture, write.

Analyze Your Own Codebase

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

Try Supermodel Free