SocketShutdownOutputByPeerTest Class — netty Architecture
Architecture documentation for the SocketShutdownOutputByPeerTest class in SocketShutdownOutputByPeerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 269e28a8_8dbb_a7a5_a5bb_cc5cf0eb25bd["SocketShutdownOutputByPeerTest"] 2eca85b3_3f89_0709_b179_a1d94f302c9f["SocketShutdownOutputByPeerTest.java"] 269e28a8_8dbb_a7a5_a5bb_cc5cf0eb25bd -->|defined in| 2eca85b3_3f89_0709_b179_a1d94f302c9f 9d77c36f_c04c_ad05_ed74_fdf2fafaca5f["shutdownOutput()"] 269e28a8_8dbb_a7a5_a5bb_cc5cf0eb25bd -->|method| 9d77c36f_c04c_ad05_ed74_fdf2fafaca5f 9fe7ca4d_9d75_ac28_fff0_ba6dbadcbf75["connect()"] 269e28a8_8dbb_a7a5_a5bb_cc5cf0eb25bd -->|method| 9fe7ca4d_9d75_ac28_fff0_ba6dbadcbf75 9d271cab_7183_8971_8186_cd72a2bc0274["close()"] 269e28a8_8dbb_a7a5_a5bb_cc5cf0eb25bd -->|method| 9d271cab_7183_8971_8186_cd72a2bc0274 99e030cb_22a4_7c1d_a13f_e80ba1a06969["write()"] 269e28a8_8dbb_a7a5_a5bb_cc5cf0eb25bd -->|method| 99e030cb_22a4_7c1d_a13f_e80ba1a06969 b32ee7c9_3a53_9589_baf2_c89e9d9f8612["Socket()"] 269e28a8_8dbb_a7a5_a5bb_cc5cf0eb25bd -->|method| b32ee7c9_3a53_9589_baf2_c89e9d9f8612
Relationship Graph
Source Code
testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketShutdownOutputByPeerTest.java lines 24–51
public class SocketShutdownOutputByPeerTest extends AbstractSocketShutdownOutputByPeerTest<Socket> {
@Override
protected void shutdownOutput(Socket s) throws IOException {
s.shutdownOutput();
}
@Override
protected void connect(Socket s, SocketAddress address) throws IOException {
SocketUtils.connect(s, address, 10000);
}
@Override
protected void close(Socket s) throws IOException {
s.close();
}
@Override
protected void write(Socket s, int data) throws IOException {
s.getOutputStream().write(data);
}
@Override
protected Socket newSocket() {
return new Socket();
}
}
Defined In
Source
Frequently Asked Questions
What is the SocketShutdownOutputByPeerTest class?
SocketShutdownOutputByPeerTest is a class in the netty codebase, defined in testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketShutdownOutputByPeerTest.java.
Where is SocketShutdownOutputByPeerTest defined?
SocketShutdownOutputByPeerTest is defined in testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketShutdownOutputByPeerTest.java at line 24.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free