testWrappedProperties() — netty Function Reference
Architecture documentation for the testWrappedProperties() function in FastThreadLocalTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD d316299d_1972_02a1_25b6_12a923156968["testWrappedProperties()"] c9cb652b_4141_8af2_1f8b_c47765bb30f9["FastThreadLocalTest"] d316299d_1972_02a1_25b6_12a923156968 -->|defined in| c9cb652b_4141_8af2_1f8b_c47765bb30f9 style d316299d_1972_02a1_25b6_12a923156968 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/test/java/io/netty/util/concurrent/FastThreadLocalTest.java lines 190–198
@Test
public void testWrappedProperties() {
assertFalse(FastThreadLocalThread.currentThreadWillCleanupFastThreadLocals());
assertFalse(FastThreadLocalThread.currentThreadHasFastThreadLocal());
FastThreadLocalThread.runWithFastThreadLocal(() -> {
assertTrue(FastThreadLocalThread.currentThreadWillCleanupFastThreadLocals());
assertTrue(FastThreadLocalThread.currentThreadHasFastThreadLocal());
});
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testWrappedProperties() do?
testWrappedProperties() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/concurrent/FastThreadLocalTest.java.
Where is testWrappedProperties() defined?
testWrappedProperties() is defined in common/src/test/java/io/netty/util/concurrent/FastThreadLocalTest.java at line 190.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free