Examples of AbstractMessage


Examples of org.apache.mina.example.sumup.message.AbstractMessage

        this.type = type;
    }

    public void encode(IoSession session, Object message,
            ProtocolEncoderOutput out) throws Exception {
        AbstractMessage m = (AbstractMessage) message;
        ByteBuffer buf = ByteBuffer.allocate(16);
        buf.setAutoExpand(true); // Enable auto-expand for easier encoding

        // Encode a header
        buf.putShort((short) type);
        buf.putInt(m.getSequence());

        // Encode a body
        encodeBody(session, m, buf);
        buf.flip();
        out.write(buf);
View Full Code Here

Examples of org.apache.mina.example.sumup.message.AbstractMessage

        this.type = type;
    }

    public void encode( IoSession session, Object message, ProtocolEncoderOutput out ) throws Exception
    {
        AbstractMessage m = ( AbstractMessage ) message ;
        ByteBuffer buf = ByteBuffer.allocate( 16 );
        buf.setAutoExpand( true ); // Enable auto-expand for easier encoding
       
        // Encode a header
        buf.putShort( ( short ) type );
        buf.putInt( m.getSequence() );
       
        // Encode a body
        encodeBody( session, m, buf );
        buf.flip();
        out.write( buf );
View Full Code Here

Examples of org.apache.mina.example.sumup.message.AbstractMessage

            sequence = in.getInt(); // Get 'sequence'.
            readHeader = true;
        }
       
        // Try to decode body
        AbstractMessage m = decodeBody( session, in );
        // Return NEED_DATA if the body is not fully read.
        if( m == null )
        {
            return MessageDecoderResult.NEED_DATA;
        }
        else
        {
            readHeader = false; // reset readHeader for the next decode
        }
        m.setSequence( sequence );
        out.write( m );
       
        return MessageDecoderResult.OK;
    }
View Full Code Here

Examples of org.apache.mina.examples.sumup.message.AbstractMessage

        this.type = type;
    }

    public void encode( ProtocolSession session, Object message, ProtocolEncoderOutput out ) throws ProtocolViolationException
    {
        AbstractMessage m = ( AbstractMessage ) message ;
        ByteBuffer buf = ByteBuffer.allocate( 16 );
        buf.setAutoExpand( true ); // Enable auto-expand for easier encoding
       
        // Encode a header
        buf.putShort( ( short ) type );
        buf.putInt( m.getSequence() );
       
        // Encode a body
        encodeBody( session, m, buf );
        buf.flip();
        out.write( buf );
View Full Code Here

Examples of org.apache.mina.examples.sumup.message.AbstractMessage

            sequence = in.getInt(); // Get 'sequence'.
            readHeader = true;
        }
       
        // Try to decode body
        AbstractMessage m = decodeBody( session, in );
        // Return NEED_DATA if the body is not fully read.
        if( m == null )
        {
            return MessageDecoderResult.NEED_DATA;
        }
        else
        {
            readHeader = false; // reset readHeader for the next decode
        }
        m.setSequence( sequence );
        out.write( m );
       
        return MessageDecoderResult.OK;
    }
View Full Code Here

Examples of org.apache.mina.examples.sumup.message.AbstractMessage

            sequence = in.getInt(); // Get 'sequence'.
            readHeader = true;
        }
       
        // Try to decode body
        AbstractMessage m = decodeBody( session, in );
        // Return NEED_DATA if the body is not fully read.
        if( m == null )
        {
            return MessageDecoderResult.NEED_DATA;
        }
        else
        {
            readHeader = false; // reset readHeader for the next decode
        }
        m.setSequence( sequence );
        out.write( m );
       
        return MessageDecoderResult.OK;
    }
View Full Code Here

Examples of org.apache.mina.examples.sumup.message.AbstractMessage

        this.type = type;
    }

    public void encode( ProtocolSession session, Object message, ProtocolEncoderOutput out ) throws ProtocolViolationException
    {
        AbstractMessage m = ( AbstractMessage ) message ;
        ByteBuffer buf = ByteBuffer.allocate( 16 );
        buf.setAutoExpand( true ); // Enable auto-expand for easier encoding
       
        // Encode a header
        buf.putShort( ( short ) type );
        buf.putInt( m.getSequence() );
       
        // Encode a body
        encodeBody( session, m, buf );
        buf.flip();
        out.write( buf );
View Full Code Here

Examples of org.apache.mina.examples.sumup.message.AbstractMessage

            sequence = in.getInt(); // Get 'sequence'.
            readHeader = true;
        }
       
        // Try to decode body
        AbstractMessage m = decodeBody( session, in );
        // Return NEED_DATA if the body is not fully read.
        if( m == null )
        {
            return MessageDecoderResult.NEED_DATA;
        }
        else
        {
            readHeader = false; // reset readHeader for the next decode
        }
        m.setSequence( sequence );
        out.write( m );
       
        return MessageDecoderResult.OK;
    }
View Full Code Here

Examples of org.apache.mina.examples.sumup.message.AbstractMessage

        this.type = type;
    }

    public void encode( IoSession session, Object message, ProtocolEncoderOutput out ) throws Exception
    {
        AbstractMessage m = ( AbstractMessage ) message ;
        ByteBuffer buf = ByteBuffer.allocate( 16 );
        buf.setAutoExpand( true ); // Enable auto-expand for easier encoding
       
        // Encode a header
        buf.putShort( ( short ) type );
        buf.putInt( m.getSequence() );
       
        // Encode a body
        encodeBody( session, m, buf );
        buf.flip();
        out.write( buf );
View Full Code Here

Examples of org.apache.mina.examples.sumup.message.AbstractMessage

            sequence = in.getInt(); // Get 'sequence'.
            readHeader = true;
        }
       
        // Try to decode body
        AbstractMessage m = decodeBody( session, in );
        // Return NEED_DATA if the body is not fully read.
        if( m == null )
        {
            return MessageDecoderResult.NEED_DATA;
        }
        else
        {
            readHeader = false; // reset readHeader for the next decode
        }
        m.setSequence( sequence );
        out.write( m );
       
        return MessageDecoderResult.OK;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.