readReady() — netty Function Reference
Architecture documentation for the readReady() function in KQueueDomainSocketChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 8aca2ab6_9800_2119_f857_87862c4d6b16["readReady()"] 296e37d0_15ad_0124_d998_7b16b98aec54["KQueueDomainUnsafe"] 8aca2ab6_9800_2119_f857_87862c4d6b16 -->|defined in| 296e37d0_15ad_0124_d998_7b16b98aec54 131adef7_86c6_6c7e_dddd_9b8b83913ccb["readReadyFd()"] 8aca2ab6_9800_2119_f857_87862c4d6b16 -->|calls| 131adef7_86c6_6c7e_dddd_9b8b83913ccb style 8aca2ab6_9800_2119_f857_87862c4d6b16 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-classes-kqueue/src/main/java/io/netty/channel/kqueue/KQueueDomainSocketChannel.java lines 128–140
@Override
void readReady(KQueueRecvByteAllocatorHandle allocHandle) {
switch (config().getReadMode()) {
case BYTES:
super.readReady(allocHandle);
break;
case FILE_DESCRIPTORS:
readReadyFd();
break;
default:
throw new Error("Unexpected read mode: " + config().getReadMode());
}
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does readReady() do?
readReady() is a function in the netty codebase, defined in transport-classes-kqueue/src/main/java/io/netty/channel/kqueue/KQueueDomainSocketChannel.java.
Where is readReady() defined?
readReady() is defined in transport-classes-kqueue/src/main/java/io/netty/channel/kqueue/KQueueDomainSocketChannel.java at line 128.
What does readReady() call?
readReady() calls 1 function(s): readReadyFd.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free