Helios.Channels.AbstractChannel.FilterOutboundMessage C# (CSharp) Метод

FilterOutboundMessage() защищенный Метод

Invoked when a new message is added to a {@link ChannelOutboundBuffer} of this {@link AbstractChannel}, so that the {@link Channel} implementation converts the message to another. (e.g. heap buffer -> direct buffer)
protected FilterOutboundMessage ( object msg ) : object
msg object
Результат object
        protected virtual object FilterOutboundMessage(object msg)
        {
            return msg;
        }