Home / Function/ nonStandardSetting() — netty Function Reference

nonStandardSetting() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  4a1aec33_80cd_2447_b187_295019c5abd0["nonStandardSetting()"]
  910ec026_5946_ddbf_7e19_bbbdae11da3a["Http2SettingsTest"]
  4a1aec33_80cd_2447_b187_295019c5abd0 -->|defined in| 910ec026_5946_ddbf_7e19_bbbdae11da3a
  style 4a1aec33_80cd_2447_b187_295019c5abd0 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java lines 263–269

    @ParameterizedTest(name = "{displayName} [{index}] value={0}")
    @ValueSource(longs = {0L, 1L, 123L, Integer.MAX_VALUE, MAX_UNSIGNED_INT - 1L, MAX_UNSIGNED_INT})
    public void nonStandardSetting(final long value) {
        char key = 0;
        settings.put(key, (Long) value);
        assertEquals(value, (long) settings.get(key));
    }

Domain

Subdomains

Frequently Asked Questions

What does nonStandardSetting() do?
nonStandardSetting() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java.
Where is nonStandardSetting() defined?
nonStandardSetting() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java at line 263.

Analyze Your Own Codebase

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

Try Supermodel Free