Home / Function/ WebSocketClientProtocolConfig() — netty Function Reference

WebSocketClientProtocolConfig() — netty Function Reference

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

Function java ProtocolCodecs HTTP calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  16c98428_4f0c_e6c7_ca00_79de3cb69457["WebSocketClientProtocolConfig()"]
  edc74929_3232_1967_2e13_08cc1479eb2a["WebSocketClientProtocolConfig"]
  16c98428_4f0c_e6c7_ca00_79de3cb69457 -->|defined in| edc74929_3232_1967_2e13_08cc1479eb2a
  4082e86b_595d_40d6_0633_2dcf26b272e8["WebSocketClientProtocolConfig()"]
  4082e86b_595d_40d6_0633_2dcf26b272e8 -->|calls| 16c98428_4f0c_e6c7_ca00_79de3cb69457
  4082e86b_595d_40d6_0633_2dcf26b272e8["WebSocketClientProtocolConfig()"]
  16c98428_4f0c_e6c7_ca00_79de3cb69457 -->|calls| 4082e86b_595d_40d6_0633_2dcf26b272e8
  style 16c98428_4f0c_e6c7_ca00_79de3cb69457 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientProtocolConfig.java lines 57–91

    private WebSocketClientProtocolConfig(
        URI webSocketUri,
        String subprotocol,
        WebSocketVersion version,
        boolean allowExtensions,
        HttpHeaders customHeaders,
        int maxFramePayloadLength,
        boolean performMasking,
        boolean allowMaskMismatch,
        boolean handleCloseFrames,
        WebSocketCloseStatus sendCloseFrame,
        boolean dropPongFrames,
        long handshakeTimeoutMillis,
        long forceCloseTimeoutMillis,
        boolean absoluteUpgradeUrl,
        boolean generateOriginHeader,
        boolean withUTF8Validator
    ) {
        this.webSocketUri = webSocketUri;
        this.subprotocol = subprotocol;
        this.version = version;
        this.allowExtensions = allowExtensions;
        this.customHeaders = customHeaders;
        this.maxFramePayloadLength = maxFramePayloadLength;
        this.performMasking = performMasking;
        this.allowMaskMismatch = allowMaskMismatch;
        this.forceCloseTimeoutMillis = forceCloseTimeoutMillis;
        this.handleCloseFrames = handleCloseFrames;
        this.sendCloseFrame = sendCloseFrame;
        this.dropPongFrames = dropPongFrames;
        this.handshakeTimeoutMillis = checkPositive(handshakeTimeoutMillis, "handshakeTimeoutMillis");
        this.absoluteUpgradeUrl = absoluteUpgradeUrl;
        this.generateOriginHeader = generateOriginHeader;
        this.withUTF8Validator = withUTF8Validator;
    }

Subdomains

Frequently Asked Questions

What does WebSocketClientProtocolConfig() do?
WebSocketClientProtocolConfig() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientProtocolConfig.java.
Where is WebSocketClientProtocolConfig() defined?
WebSocketClientProtocolConfig() is defined in codec-http/src/main/java/io/netty/handler/codec/http/websocketx/WebSocketClientProtocolConfig.java at line 57.
What does WebSocketClientProtocolConfig() call?
WebSocketClientProtocolConfig() calls 1 function(s): WebSocketClientProtocolConfig.
What calls WebSocketClientProtocolConfig()?
WebSocketClientProtocolConfig() is called by 1 function(s): WebSocketClientProtocolConfig.

Analyze Your Own Codebase

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

Try Supermodel Free