data() — netty Function Reference
Architecture documentation for the data() function in QuicChannelEchoTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 494322ca_c997_6257_b077_d4416b8c5277["data()"] 949dbf36_222b_a1d5_95aa_68ae528fcaf5["QuicChannelEchoTest"] 494322ca_c997_6257_b077_d4416b8c5277 -->|defined in| 949dbf36_222b_a1d5_95aa_68ae528fcaf5 style 494322ca_c997_6257_b077_d4416b8c5277 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-native-quic/src/test/java/io/netty/handler/codec/quic/QuicChannelEchoTest.java lines 58–68
public static Collection<Object[]> data() {
List<Object[]> config = new ArrayList<>();
for (int a = 0; a < 2; a++) {
for (int b = 0; b < 2; b++) {
for (int c = 0; c < 2; c++) {
config.add(new Object[] { a == 0, b == 0, c == 0 });
}
}
}
return config;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does data() do?
data() is a function in the netty codebase, defined in codec-native-quic/src/test/java/io/netty/handler/codec/quic/QuicChannelEchoTest.java.
Where is data() defined?
data() is defined in codec-native-quic/src/test/java/io/netty/handler/codec/quic/QuicChannelEchoTest.java at line 58.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free