writeBulkStringContent() — netty Function Reference
Architecture documentation for the writeBulkStringContent() function in RedisEncoder.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD a804c78c_b98b_f6e9_9f3e_310c38008d1e["writeBulkStringContent()"] 917d8b11_c533_469c_d2a7_d3500be572e6["RedisEncoder"] a804c78c_b98b_f6e9_9f3e_310c38008d1e -->|defined in| 917d8b11_c533_469c_d2a7_d3500be572e6 709fcc53_354a_bc98_e002_ecd01cc6fa7a["writeRedisMessage()"] 709fcc53_354a_bc98_e002_ecd01cc6fa7a -->|calls| a804c78c_b98b_f6e9_9f3e_310c38008d1e style a804c78c_b98b_f6e9_9f3e_310c38008d1e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-redis/src/main/java/io/netty/handler/codec/redis/RedisEncoder.java lines 136–142
private static void writeBulkStringContent(ByteBufAllocator allocator, BulkStringRedisContent msg,
List<Object> out) {
out.add(msg.content().retain());
if (msg instanceof LastBulkStringRedisContent) {
out.add(allocator.ioBuffer(RedisConstants.EOL_LENGTH).writeShort(RedisConstants.EOL_SHORT));
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does writeBulkStringContent() do?
writeBulkStringContent() is a function in the netty codebase, defined in codec-redis/src/main/java/io/netty/handler/codec/redis/RedisEncoder.java.
Where is writeBulkStringContent() defined?
writeBulkStringContent() is defined in codec-redis/src/main/java/io/netty/handler/codec/redis/RedisEncoder.java at line 136.
What calls writeBulkStringContent()?
writeBulkStringContent() is called by 1 function(s): writeRedisMessage.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free