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

    bufferValid = false;

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