Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/o0oo0oo/netty-in-action
네티 인 액션 공부
https://github.com/o0oo0oo/netty-in-action
netty
Last synced: 27 days ago
JSON representation
네티 인 액션 공부
- Host: GitHub
- URL: https://github.com/o0oo0oo/netty-in-action
- Owner: O0oO0Oo
- Created: 2024-05-19T07:41:58.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-04T02:51:21.000Z (5 months ago)
- Last Synced: 2024-10-09T11:43:21.811Z (27 days ago)
- Topics: netty
- Language: Java
- Homepage:
- Size: 85 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Netty-In-Action
네티 인 액션 책 읽으면서 따라한 예제 코드### 2. Your first Netty application
- [Simple Netty Echo Client/Server](https://github.com/O0oO0Oo/Netty-In-Action/tree/main/netty/src/main/java/org/study/chp2)
### 4. Transports
- [Plain Nio/Oio Server](https://github.com/O0oO0Oo/Netty-In-Action/tree/main/netty/src/main/java/org/study/chp4/without_netty)
- [Netty Nio/Oio Server](https://github.com/O0oO0Oo/Netty-In-Action/tree/main/netty/src/main/java/org/study/chp4/with_netty)
- [Channel Operation](https://github.com/O0oO0Oo/Netty-In-Action/blob/main/netty/src/main/java/org/study/chp4/channel_ops/ChannelOps.java)
### 5. ByteBuf
- [ByteBuf Type](https://github.com/O0oO0Oo/Netty-In-Action/blob/main/netty/src/main/java/org/study/chp5/buffer_usage/Buffer.java) - Heap/Direct/Composite/Copied/Wrapper etc
- [ByteBuf Operation](https://github.com/O0oO0Oo/Netty-In-Action/blob/main/netty/src/main/java/org/study/chp5/bytebuf_operation/ByteBufOperation.java) - Writer/Reader indexing, management, operation
- [ByteBuf Reference Counting](https://github.com/O0oO0Oo/Netty-In-Action/blob/main/netty/src/main/java/org/study/chp5/bytebuf_reference_counting/ByteBufReferenceCounting.java)### 6. ChannelHandler and ChannelPipeline
- [ChannelHandler, Pipeline, ChannelHandlerContext](https://github.com/O0oO0Oo/Netty-In-Action/tree/main/netty/src/main/java/org/study/chp6/channelpipeline/ctx)
- [Exception](https://github.com/O0oO0Oo/Netty-In-Action/tree/main/netty/src/main/java/org/study/chp6/exception)
- [Resource Leak](https://github.com/O0oO0Oo/Netty-In-Action/tree/main/netty/src/main/java/org/study/chp6/resourceleak) --Dio.netty.leakDetectionLevel=ADVANCED -mx{mem size}m
설정