Home / Function/ newMapUnknownMethods() — netty Function Reference

newMapUnknownMethods() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  3a018ff6_a483_fe89_7f9f_0f9bb2f4b0a2["newMapUnknownMethods()"]
  850ae674_6e21_4c44_21cd_02af9a8adf48["HttpMethodMapBenchmark"]
  3a018ff6_a483_fe89_7f9f_0f9bb2f4b0a2 -->|defined in| 850ae674_6e21_4c44_21cd_02af9a8adf48
  style 3a018ff6_a483_fe89_7f9f_0f9bb2f4b0a2 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

microbench/src/main/java/io/netty/handler/codec/http/HttpMethodMapBenchmark.java lines 198–206

    @Benchmark
    public void newMapUnknownMethods(Blackhole bh) throws Exception {
        for (int i = 0; i < UNKNOWN_METHODS.length; ++i) {
            HttpMethod method = NEW_MAP.get(UNKNOWN_METHODS[i]);
            if (method != null) {
                bh.consume(method);
            }
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does newMapUnknownMethods() do?
newMapUnknownMethods() is a function in the netty codebase, defined in microbench/src/main/java/io/netty/handler/codec/http/HttpMethodMapBenchmark.java.
Where is newMapUnknownMethods() defined?
newMapUnknownMethods() is defined in microbench/src/main/java/io/netty/handler/codec/http/HttpMethodMapBenchmark.java at line 198.

Analyze Your Own Codebase

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

Try Supermodel Free