assertCloseNotify() — netty Function Reference
Architecture documentation for the assertCloseNotify() function in CloseNotifyTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 3b5ef0d4_0faf_0554_a2cf_8eddf09ebf76["assertCloseNotify()"] 91635dfc_456c_fec9_4413_a1ee45d49032["CloseNotifyTest"] 3b5ef0d4_0faf_0554_a2cf_8eddf09ebf76 -->|defined in| 91635dfc_456c_fec9_4413_a1ee45d49032 c8dc5de5_36bd_d22b_8ec3_7c93cc9586c8["eventsOrder()"] c8dc5de5_36bd_d22b_8ec3_7c93cc9586c8 -->|calls| 3b5ef0d4_0faf_0554_a2cf_8eddf09ebf76 aaff46e6_d1c4_937c_05e7_56dcbca48920["forwardAllWithCloseNotify()"] aaff46e6_d1c4_937c_05e7_56dcbca48920 -->|calls| 3b5ef0d4_0faf_0554_a2cf_8eddf09ebf76 style 3b5ef0d4_0faf_0554_a2cf_8eddf09ebf76 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/ssl/CloseNotifyTest.java lines 226–233
static void assertCloseNotify(ByteBuf closeNotify) {
assertNotNull(closeNotify);
try {
assertThat(closeNotify.readableBytes()).isGreaterThanOrEqualTo(7);
} finally {
closeNotify.release();
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does assertCloseNotify() do?
assertCloseNotify() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/CloseNotifyTest.java.
Where is assertCloseNotify() defined?
assertCloseNotify() is defined in handler/src/test/java/io/netty/handler/ssl/CloseNotifyTest.java at line 226.
What calls assertCloseNotify()?
assertCloseNotify() is called by 2 function(s): eventsOrder, forwardAllWithCloseNotify.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free