sendNotModified() — netty Function Reference
Architecture documentation for the sendNotModified() function in Http2StaticFileServerHandler.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 2e2a061a_4004_0da1_139d_0c0c613f21e9["sendNotModified()"] 0106d702_a5aa_70a0_2d44_3e8c79971862["Http2StaticFileServerHandler"] 2e2a061a_4004_0da1_139d_0c0c613f21e9 -->|defined in| 0106d702_a5aa_70a0_2d44_3e8c79971862 f3d3a002_604b_1387_a2bd_93edd96b6d76["channelRead()"] f3d3a002_604b_1387_a2bd_93edd96b6d76 -->|calls| 2e2a061a_4004_0da1_139d_0c0c613f21e9 74e3660b_1424_7252_96d9_d4584354600b["setDateHeader()"] 2e2a061a_4004_0da1_139d_0c0c613f21e9 -->|calls| 74e3660b_1424_7252_96d9_d4584354600b style 2e2a061a_4004_0da1_139d_0c0c613f21e9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
example/src/main/java/io/netty/example/http2/file/Http2StaticFileServerHandler.java lines 328–334
private void sendNotModified(ChannelHandlerContext ctx) {
Http2Headers headers = new DefaultHttp2Headers();
headers.status(NOT_MODIFIED.toString());
setDateHeader(headers);
ctx.writeAndFlush(new DefaultHttp2HeadersFrame(headers, true).stream(stream));
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does sendNotModified() do?
sendNotModified() is a function in the netty codebase, defined in example/src/main/java/io/netty/example/http2/file/Http2StaticFileServerHandler.java.
Where is sendNotModified() defined?
sendNotModified() is defined in example/src/main/java/io/netty/example/http2/file/Http2StaticFileServerHandler.java at line 328.
What does sendNotModified() call?
sendNotModified() calls 1 function(s): setDateHeader.
What calls sendNotModified()?
sendNotModified() is called by 1 function(s): channelRead.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free