Example usage for javax.jms BytesMessage setIntProperty

List of usage examples for javax.jms BytesMessage setIntProperty

Introduction

In this page you can find the example usage for javax.jms BytesMessage setIntProperty.

Prototype


void setIntProperty(String name, int value) throws JMSException;

Source Link

Document

Sets an int property value with the specified name into the message.

Usage

From source file:com.datatorrent.lib.io.jms.JMSObjectInputOperatorTest.java

private void createByteMsgs(int numMessages) throws Exception {
    BytesMessage message = testMeta.session.createBytesMessage();
    for (int i = 0; i < numMessages; i++) {
        message.writeBytes(("Message: " + i).getBytes());
        message.setIntProperty("counter", i);
        message.setJMSCorrelationID("MyCorrelationID");
        message.setJMSReplyTo(new ActiveMQQueue("MyReplyTo"));
        message.setJMSType("MyType");
        message.setJMSPriority(5);/*from  ww w .  ja v a 2  s .  c om*/
        testMeta.producer.send(message);
    }
}