Helios.Channels.AbstractChannel.FilterOutboundMessage C# (CSharp) Method

FilterOutboundMessage() protected method

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
return object
        protected virtual object FilterOutboundMessage(object msg)
        {
            return msg;
        }