Home / Function/ windowUpdateFrameWriteComplete() — netty Function Reference

windowUpdateFrameWriteComplete() — netty Function Reference

Architecture documentation for the windowUpdateFrameWriteComplete() function in AbstractHttp2StreamChannel.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  fb715e07_c12a_8071_8ba2_a2563036031e["windowUpdateFrameWriteComplete()"]
  bcb58015_0c85_17e2_f1b3_0c1ad3aaa388["AbstractHttp2StreamChannel"]
  fb715e07_c12a_8071_8ba2_a2563036031e -->|defined in| bcb58015_0c85_17e2_f1b3_0c1ad3aaa388
  55416b34_a51d_3ed7_5cdb_3c3f84eaebcb["ChannelFuture()"]
  55416b34_a51d_3ed7_5cdb_3c3f84eaebcb -->|calls| fb715e07_c12a_8071_8ba2_a2563036031e
  215b8316_feb5_500b_88f8_49eff0eac336["close()"]
  fb715e07_c12a_8071_8ba2_a2563036031e -->|calls| 215b8316_feb5_500b_88f8_49eff0eac336
  style fb715e07_c12a_8071_8ba2_a2563036031e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/AbstractHttp2StreamChannel.java lines 145–158

    private static void windowUpdateFrameWriteComplete(ChannelFuture future, Channel streamChannel) {
        Throwable cause = future.cause();
        if (cause != null) {
            Throwable unwrappedCause;
            // Unwrap if needed
            if (cause instanceof Http2FrameStreamException && (unwrappedCause = cause.getCause()) != null) {
                cause = unwrappedCause;
            }

            // Notify the child-channel and close it.
            streamChannel.pipeline().fireExceptionCaught(cause);
            streamChannel.unsafe().close(streamChannel.unsafe().voidPromise());
        }
    }

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does windowUpdateFrameWriteComplete() do?
windowUpdateFrameWriteComplete() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/AbstractHttp2StreamChannel.java.
Where is windowUpdateFrameWriteComplete() defined?
windowUpdateFrameWriteComplete() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/AbstractHttp2StreamChannel.java at line 145.
What does windowUpdateFrameWriteComplete() call?
windowUpdateFrameWriteComplete() calls 1 function(s): close.
What calls windowUpdateFrameWriteComplete()?
windowUpdateFrameWriteComplete() is called by 1 function(s): ChannelFuture.

Analyze Your Own Codebase

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

Try Supermodel Free