splitEOLDoesNotInfiniteLoop() — netty Function Reference
Architecture documentation for the splitEOLDoesNotInfiniteLoop() function in RedisDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 30c204c5_3f6f_39b8_adfc_6e2eb0b3a6ca["splitEOLDoesNotInfiniteLoop()"] 5bef0d49_45a1_6e64_a046_06825037f689["RedisDecoderTest"] 30c204c5_3f6f_39b8_adfc_6e2eb0b3a6ca -->|defined in| 5bef0d49_45a1_6e64_a046_06825037f689 style 30c204c5_3f6f_39b8_adfc_6e2eb0b3a6ca fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-redis/src/test/java/io/netty/handler/codec/redis/RedisDecoderTest.java lines 66–74
@Test
public void splitEOLDoesNotInfiniteLoop() throws Exception {
assertFalse(channel.writeInbound(byteBufOf("$6\r\nfoobar\r")));
assertTrue(channel.writeInbound(byteBufOf("\n")));
RedisMessage msg = channel.readInbound();
assertTrue(msg instanceof FullBulkStringRedisMessage);
ReferenceCountUtil.release(msg);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does splitEOLDoesNotInfiniteLoop() do?
splitEOLDoesNotInfiniteLoop() is a function in the netty codebase, defined in codec-redis/src/test/java/io/netty/handler/codec/redis/RedisDecoderTest.java.
Where is splitEOLDoesNotInfiniteLoop() defined?
splitEOLDoesNotInfiniteLoop() is defined in codec-redis/src/test/java/io/netty/handler/codec/redis/RedisDecoderTest.java at line 66.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free