Helios.Channels.AbstractChannel.FilterOutboundMessage C# (CSharp) Méthode

FilterOutboundMessage() protected méthode

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