Package io.netty.channel
Class DefaultMessageSizeEstimator.HandleImpl
- java.lang.Object
-
- io.netty.channel.DefaultMessageSizeEstimator.HandleImpl
-
- All Implemented Interfaces:
MessageSizeEstimator.Handle
- Enclosing class:
- DefaultMessageSizeEstimator
private static final class DefaultMessageSizeEstimator.HandleImpl extends java.lang.Object implements MessageSizeEstimator.Handle
-
-
Field Summary
Fields Modifier and Type Field Description private int
unknownSize
-
Constructor Summary
Constructors Modifier Constructor Description private
HandleImpl(int unknownSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
size(java.lang.Object msg)
Calculate the size of the given message.
-
-
-
Method Detail
-
size
public int size(java.lang.Object msg)
Description copied from interface:MessageSizeEstimator.Handle
Calculate the size of the given message.- Specified by:
size
in interfaceMessageSizeEstimator.Handle
- Parameters:
msg
- The message for which the size should be calculated- Returns:
- size The size in bytes. The returned size must be >= 0
-
-