Home / Function/ logPushPromise() — netty Function Reference

logPushPromise() — netty Function Reference

Architecture documentation for the logPushPromise() function in Http2FrameLogger.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  b6995ca0_b481_a1ed_7b1a_8de2e887d071["logPushPromise()"]
  b05a86d6_042a_ba9f_e399_5cb7b15de65a["Http2FrameLogger"]
  b6995ca0_b481_a1ed_7b1a_8de2e887d071 -->|defined in| b05a86d6_042a_ba9f_e399_5cb7b15de65a
  a20063d9_42e3_4fe4_db8b_782d12725438["isEnabled()"]
  b6995ca0_b481_a1ed_7b1a_8de2e887d071 -->|calls| a20063d9_42e3_4fe4_db8b_782d12725438
  style b6995ca0_b481_a1ed_7b1a_8de2e887d071 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameLogger.java lines 132–138

    public void logPushPromise(Direction direction, ChannelHandlerContext ctx, int streamId, int promisedStreamId,
            Http2Headers headers, int padding) {
        if (isEnabled()) {
            logger.log(level, "{} {} PUSH_PROMISE: streamId={} promisedStreamId={} headers={} padding={}",
                    ctx.channel(), direction.name(), streamId, promisedStreamId, headers, padding);
        }
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does logPushPromise() do?
logPushPromise() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameLogger.java.
Where is logPushPromise() defined?
logPushPromise() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameLogger.java at line 132.
What does logPushPromise() call?
logPushPromise() calls 1 function(s): isEnabled.

Analyze Your Own Codebase

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

Try Supermodel Free