pipe() — netty Function Reference
Architecture documentation for the pipe() function in FileDescriptor.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD cd1b0a99_f34c_693e_34bf_9930969fbdf3["pipe()"] 5c6e37aa_7064_92fb_4b59_7b76ad32e403["FileDescriptor"] cd1b0a99_f34c_693e_34bf_9930969fbdf3 -->|defined in| 5c6e37aa_7064_92fb_4b59_7b76ad32e403 ca383020_ed4a_268b_d699_87b6250a6b94["newPipe()"] cd1b0a99_f34c_693e_34bf_9930969fbdf3 -->|calls| ca383020_ed4a_268b_d699_87b6250a6b94 2a6c8488_f313_165b_0bae_cab054b1e82e["FileDescriptor()"] cd1b0a99_f34c_693e_34bf_9930969fbdf3 -->|calls| 2a6c8488_f313_165b_0bae_cab054b1e82e style cd1b0a99_f34c_693e_34bf_9930969fbdf3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-native-unix-common/src/main/java/io/netty/channel/unix/FileDescriptor.java lines 196–202
public static FileDescriptor[] pipe() throws IOException {
long res = newPipe();
if (res < 0) {
throw newIOException("newPipe", (int) res);
}
return new FileDescriptor[]{new FileDescriptor((int) (res >>> 32)), new FileDescriptor((int) res)};
}
Domain
Subdomains
Source
Frequently Asked Questions
What does pipe() do?
pipe() is a function in the netty codebase, defined in transport-native-unix-common/src/main/java/io/netty/channel/unix/FileDescriptor.java.
Where is pipe() defined?
pipe() is defined in transport-native-unix-common/src/main/java/io/netty/channel/unix/FileDescriptor.java at line 196.
What does pipe() call?
pipe() calls 2 function(s): FileDescriptor, newPipe.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free