public class StompFrameHandlerV10 extends VersionedStompFrameHandler implements FrameEventListener
{
public StompFrameHandlerV10(StompConnection connection)
{
super(connection);
decoder = new StompDecoder();
decoder.init();
connection.addStompEventListener(this);
}