doReadMessages() — netty Function Reference
Architecture documentation for the doReadMessages() function in NioUdtAcceptorChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 6e4501c9_c747_2f90_d363_a731a7b8d293["doReadMessages()"] 5ed1b4e6_607f_ea13_fa5a_c95b372c2127["NioUdtAcceptorChannel"] 6e4501c9_c747_2f90_d363_a731a7b8d293 -->|defined in| 5ed1b4e6_607f_ea13_fa5a_c95b372c2127 style 6e4501c9_c747_2f90_d363_a731a7b8d293 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-udt/src/main/java/io/netty/channel/udt/nio/NioUdtAcceptorChannel.java lines 151–160
@Override
protected int doReadMessages(List<Object> buf) throws Exception {
final SocketChannelUDT channelUDT = (SocketChannelUDT) SocketUtils.accept(javaChannel());
if (channelUDT == null) {
return 0;
} else {
buf.add(newConnectorChannel(channelUDT));
return 1;
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does doReadMessages() do?
doReadMessages() is a function in the netty codebase, defined in transport-udt/src/main/java/io/netty/channel/udt/nio/NioUdtAcceptorChannel.java.
Where is doReadMessages() defined?
doReadMessages() is defined in transport-udt/src/main/java/io/netty/channel/udt/nio/NioUdtAcceptorChannel.java at line 151.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free