Home / Function/ sendNotModified() — netty Function Reference

sendNotModified() — netty Function Reference

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

Function java Buffer Search calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  33129c23_d788_1580_659d_7761765ab670["sendNotModified()"]
  02ca82d7_508c_aabe_bb4d_dd1603c38b01["HttpStaticFileServerHandler"]
  33129c23_d788_1580_659d_7761765ab670 -->|defined in| 02ca82d7_508c_aabe_bb4d_dd1603c38b01
  d39f8eb8_b352_59dc_d244_4e113cd078df["channelRead0()"]
  d39f8eb8_b352_59dc_d244_4e113cd078df -->|calls| 33129c23_d788_1580_659d_7761765ab670
  1a5a1970_da05_7dc6_1738_6d81add6a986["setDateHeader()"]
  33129c23_d788_1580_659d_7761765ab670 -->|calls| 1a5a1970_da05_7dc6_1738_6d81add6a986
  387357b5_0623_04d6_d7dd_f0074f835df9["sendAndCleanupConnection()"]
  33129c23_d788_1580_659d_7761765ab670 -->|calls| 387357b5_0623_04d6_d7dd_f0074f835df9
  style 33129c23_d788_1580_659d_7761765ab670 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

example/src/main/java/io/netty/example/http/file/HttpStaticFileServerHandler.java lines 341–346

    private void sendNotModified(ChannelHandlerContext ctx) {
        FullHttpResponse response = new DefaultFullHttpResponse(HTTP_1_1, NOT_MODIFIED, Unpooled.EMPTY_BUFFER);
        setDateHeader(response);

        sendAndCleanupConnection(ctx, response);
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does sendNotModified() do?
sendNotModified() is a function in the netty codebase, defined in example/src/main/java/io/netty/example/http/file/HttpStaticFileServerHandler.java.
Where is sendNotModified() defined?
sendNotModified() is defined in example/src/main/java/io/netty/example/http/file/HttpStaticFileServerHandler.java at line 341.
What does sendNotModified() call?
sendNotModified() calls 2 function(s): sendAndCleanupConnection, setDateHeader.
What calls sendNotModified()?
sendNotModified() is called by 1 function(s): channelRead0.

Analyze Your Own Codebase

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

Try Supermodel Free