notifyEarlyDataReadyIfNeeded() — netty Function Reference
Architecture documentation for the notifyEarlyDataReadyIfNeeded() function in QuicheQuicChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 43aec3ee_7b99_81ef_ef3d_ebff925f4d69["notifyEarlyDataReadyIfNeeded()"] 3c534d05_bb5b_c991_5e03_7ec94e739cf7["QuicheQuicChannel"] 43aec3ee_7b99_81ef_ef3d_ebff925f4d69 -->|defined in| 3c534d05_bb5b_c991_5e03_7ec94e739cf7 9f9da465_f345_60be_84db_446a37063039["SendResult()"] 9f9da465_f345_60be_84db_446a37063039 -->|calls| 43aec3ee_7b99_81ef_ef3d_ebff925f4d69 style 43aec3ee_7b99_81ef_ef3d_ebff925f4d69 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java lines 1983–1989
private void notifyEarlyDataReadyIfNeeded(QuicheQuicConnection conn) {
if (!server && !earlyDataReadyNotified &&
!conn.isFreed() && Quiche.quiche_conn_is_in_early_data(conn.address())) {
earlyDataReadyNotified = true;
pipeline().fireUserEventTriggered(SslEarlyDataReadyEvent.INSTANCE);
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does notifyEarlyDataReadyIfNeeded() do?
notifyEarlyDataReadyIfNeeded() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java.
Where is notifyEarlyDataReadyIfNeeded() defined?
notifyEarlyDataReadyIfNeeded() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java at line 1983.
What calls notifyEarlyDataReadyIfNeeded()?
notifyEarlyDataReadyIfNeeded() is called by 1 function(s): SendResult.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free