public Message putDoubleProperty(final String key, final double value) { properties.putDoubleProperty(new SimpleString(key), value); bufferValid = false; return this; }
@Override public JMSProducer setProperty(String name, double value) { checkName(name); properties.putDoubleProperty(new SimpleString(name), value); return this; }