Home / Function/ simpleRequestNoShortCircuit() — netty Function Reference

simpleRequestNoShortCircuit() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  df8b43f1_7c0c_ce41_b578_236a69b0c9c3["simpleRequestNoShortCircuit()"]
  e946b2e4_b243_053e_5c0a_3d1a9a50042d["CorsHandlerTest"]
  df8b43f1_7c0c_ce41_b578_236a69b0c9c3 -->|defined in| e946b2e4_b243_053e_5c0a_3d1a9a50042d
  style df8b43f1_7c0c_ce41_b578_236a69b0c9c3 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/http/cors/CorsHandlerTest.java lines 310–317

    @Test
    public void simpleRequestNoShortCircuit() {
        final CorsConfig config = forOrigin("http://localhost:8080").build();
        final HttpResponse response = simpleRequest(config, "http://localhost:7777");
        assertEquals(OK, response.status());
        assertNull(response.headers().get(ACCESS_CONTROL_ALLOW_ORIGIN));
        assertTrue(ReferenceCountUtil.release(response));
    }

Domain

Subdomains

Frequently Asked Questions

What does simpleRequestNoShortCircuit() do?
simpleRequestNoShortCircuit() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/cors/CorsHandlerTest.java.
Where is simpleRequestNoShortCircuit() defined?
simpleRequestNoShortCircuit() is defined in codec-http/src/test/java/io/netty/handler/codec/http/cors/CorsHandlerTest.java at line 310.

Analyze Your Own Codebase

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

Try Supermodel Free