All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lastbamboo.common.tcp.frame.TcpFrameDemuxingStateMachineProtocolDecoder Maven / Gradle / Ivy

The newest version!
package org.lastbamboo.common.tcp.frame;

import org.littleshoot.util.mina.DemuxingStateMachineProtocolDecoder;

/**
 * Decoder for framed TCP messages that uses a state machine and is capable of 
 * being demultiplexed with other protocols on the same port. 
 */
public class TcpFrameDemuxingStateMachineProtocolDecoder extends
    DemuxingStateMachineProtocolDecoder 
    {

    /**
     * Creates a new state machine decoder.
     */
    public TcpFrameDemuxingStateMachineProtocolDecoder()
        {
        super(new TcpFrameDecodingState());
        }

    }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy