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 05dae57ad7
commit 5fb349ca5a

View File

@ -245,7 +245,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);