Home / Function/ configureSpdy() — netty Function Reference

configureSpdy() — netty Function Reference

Architecture documentation for the configureSpdy() function in SpdyOrHttpHandler.java from the netty codebase.

Function java Buffer Search called by 1

Entity Profile

Dependency Diagram

graph TD
  cf8c2885_2362_85c5_fcbf_aaae849b17d4["configureSpdy()"]
  358d8f69_4752_847f_9b3c_ad349643d236["SpdyOrHttpHandler"]
  cf8c2885_2362_85c5_fcbf_aaae849b17d4 -->|defined in| 358d8f69_4752_847f_9b3c_ad349643d236
  bbd1c066_2618_996a_57b4_0aaae86691da["configurePipeline()"]
  bbd1c066_2618_996a_57b4_0aaae86691da -->|calls| cf8c2885_2362_85c5_fcbf_aaae849b17d4
  style cf8c2885_2362_85c5_fcbf_aaae849b17d4 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

example/src/main/java/io/netty/example/spdy/server/SpdyOrHttpHandler.java lines 58–66

    private static void configureSpdy(ChannelHandlerContext ctx, SpdyVersion version) throws Exception {
        ChannelPipeline p = ctx.pipeline();
        p.addLast(new SpdyFrameCodec(version));
        p.addLast(new SpdySessionHandler(version, true));
        p.addLast(new SpdyHttpEncoder(version));
        p.addLast(new SpdyHttpDecoder(version, MAX_CONTENT_LENGTH));
        p.addLast(new SpdyHttpResponseStreamIdHandler());
        p.addLast(new SpdyServerHandler());
    }

Domain

Subdomains

Frequently Asked Questions

What does configureSpdy() do?
configureSpdy() is a function in the netty codebase, defined in example/src/main/java/io/netty/example/spdy/server/SpdyOrHttpHandler.java.
Where is configureSpdy() defined?
configureSpdy() is defined in example/src/main/java/io/netty/example/spdy/server/SpdyOrHttpHandler.java at line 58.
What calls configureSpdy()?
configureSpdy() is called by 1 function(s): configurePipeline.

Analyze Your Own Codebase

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

Try Supermodel Free