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