Update ChannelConfig.java

{@link ByteBufAllocator} -> {@link MessageSizeEstimator} on
https://github.com/netty/netty/blob/4.0/transport/src/main/java/io/netty/channel/ChannelConfig.java#L248
This commit is contained in:
Minwoo Jung 2015-07-19 16:26:34 +09:00 committed by Norman Maurer
parent d64168e315
commit f2b445f97f

View File

@ -227,7 +227,7 @@ public interface ChannelConfig {
MessageSizeEstimator getMessageSizeEstimator();
/**
* Set the {@link ByteBufAllocator} which is used for the channel
* Set the {@link MessageSizeEstimator} which is used for the channel
* to detect the size of a message.
*/
ChannelConfig setMessageSizeEstimator(MessageSizeEstimator estimator);