Exemplo n.º 1
0
  public Message putLongProperty(final String key, final long value) {
    properties.putLongProperty(new SimpleString(key), value);

    bufferValid = false;

    return this;
  }
Exemplo n.º 2
0
 @Override
 public JMSProducer setProperty(String name, long value) {
   checkName(name);
   properties.putLongProperty(new SimpleString(name), value);
   return this;
 }