반응형
Netty 4.0 이전 버전과 이후 버전의 가장 큰 차이점 입니다.
참고하세요.
IoBuffer | vs | ChannelBuffer |
get() | readByte() | |
get(byte[]) | readBytes(byte[]) | |
remaining() | readableBytes() | |
put(byte[]) | writeBytes(byte[]) | |
put(byte) | writeByte(byte) | |
flip() | resetReaderIndex() | |
allocate(int) | ChannelBuffers.buffer(int) | |
setAutoExpand | dynamicBuffer | |
skip(int) | skipBytes(int) | |
position() | readerIndex() |
반응형
'java' 카테고리의 다른 글
java - 알파벳 증가 시키기 -alphabet (0) | 2017.10.24 |
---|---|
spring secuirty - how to catch CookieTheftException (0) | 2017.10.16 |
java - outbound 포트 방화벽 확인을 위한 port listen 소스 (1) | 2017.09.26 |
spring boot - @Scheduled Test (2) | 2017.09.19 |
jdbc connection reset (0) | 2017.09.09 |
java - spring - MultipartFile transferTo FileNotFoundException (2) | 2017.09.06 |
java - telnet 대신 포트 방화벽 확인하기 port check (2) | 2017.09.05 |
spring boot context path (0) | 2017.08.31 |