Home / Function/ oldMapUnknownMethods() — netty Function Reference

oldMapUnknownMethods() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

microbench/src/main/java/io/netty/handler/codec/http/HttpMethodMapBenchmark.java lines 188–196

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

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free