testInterfaceSerialization() — netty Function Reference
Architecture documentation for the testInterfaceSerialization() function in CompactObjectSerializationTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD ba4eb774_8b82_20a3_ee7b_6d6d7fcc6614["testInterfaceSerialization()"] 7da35a2e_7b09_fcc5_27d4_bb00e4fd34ea["CompactObjectSerializationTest"] ba4eb774_8b82_20a3_ee7b_6d6d7fcc6614 -->|defined in| 7da35a2e_7b09_fcc5_27d4_bb00e4fd34ea style ba4eb774_8b82_20a3_ee7b_6d6d7fcc6614 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-base/src/test/java/io/netty/handler/codec/serialization/CompactObjectSerializationTest.java lines 27–35
@Test
public void testInterfaceSerialization() throws Exception {
PipedOutputStream pipeOut = new PipedOutputStream();
PipedInputStream pipeIn = new PipedInputStream(pipeOut);
CompactObjectOutputStream out = new CompactObjectOutputStream(pipeOut);
CompactObjectInputStream in = new CompactObjectInputStream(pipeIn, ClassResolvers.cacheDisabled(null));
out.writeObject(List.class);
Assertions.assertSame(List.class, in.readObject());
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does testInterfaceSerialization() do?
testInterfaceSerialization() is a function in the netty codebase, defined in codec-base/src/test/java/io/netty/handler/codec/serialization/CompactObjectSerializationTest.java.
Where is testInterfaceSerialization() defined?
testInterfaceSerialization() is defined in codec-base/src/test/java/io/netty/handler/codec/serialization/CompactObjectSerializationTest.java at line 27.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free