2014-12-11 07:17:29 -05:00
|
|
|
# Last-Value Queues
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
Last-Value queues are special queues which discard any messages when a
|
|
|
|
newer message with the same value for a well-defined Last-Value property
|
|
|
|
is put in the queue. In other words, a Last-Value queue only retains the
|
|
|
|
last value.
|
|
|
|
|
|
|
|
A typical example for Last-Value queue is for stock prices, where you
|
|
|
|
are only interested by the latest value for a particular stock.
|
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
## Configuring Last-Value Queues
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
Last-value queues are defined in the address-setting configuration:
|
|
|
|
|
|
|
|
<address-setting match="jms.queue.lastValueQueue">
|
|
|
|
<last-value-queue>true</last-value-queue>
|
|
|
|
</address-setting>
|
|
|
|
|
|
|
|
By default, `last-value-queue` is false. Address wildcards can be used
|
|
|
|
to configure Last-Value queues for a set of addresses (see ?).
|
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
## Using Last-Value Property
|
2014-12-04 10:25:29 -05:00
|
|
|
|
|
|
|
The property name used to identify the last value is `"_HQ_LVQ_NAME"`
|
|
|
|
(or the constant `Message.HDR_LAST_VALUE_NAME` from the Core API).
|
|
|
|
|
|
|
|
For example, if two messages with the same value for the Last-Value
|
|
|
|
property are sent to a Last-Value queue, only the latest message will be
|
|
|
|
kept in the queue:
|
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
``` java
|
|
|
|
// send 1st message with Last-Value property set to STOCK_NAME
|
|
|
|
TextMessage message = session.createTextMessage("1st message with Last-Value property set");
|
|
|
|
message.setStringProperty("_HQ_LVQ_NAME", "STOCK_NAME");
|
|
|
|
producer.send(message);
|
|
|
|
|
2015-01-23 09:28:07 -05:00
|
|
|
// send 2nd message with Last-Value property set to STOCK_NAME
|
2014-12-11 07:17:29 -05:00
|
|
|
message = session.createTextMessage("2nd message with Last-Value property set");
|
|
|
|
message.setStringProperty("_HQ_LVQ_NAME", "STOCK_NAME");
|
|
|
|
producer.send(message);
|
2015-01-23 09:28:07 -05:00
|
|
|
|
2014-12-11 07:17:29 -05:00
|
|
|
...
|
2015-01-23 09:28:07 -05:00
|
|
|
|
|
|
|
// only the 2nd message will be received: it is the latest with
|
2014-12-11 07:17:29 -05:00
|
|
|
// the Last-Value property set
|
|
|
|
TextMessage messageReceived = (TextMessage)messageConsumer.receive(5000);
|
|
|
|
System.out.format("Received message: %s\n", messageReceived.getText());
|
|
|
|
```
|
|
|
|
|
|
|
|
## Example
|
2014-12-04 10:25:29 -05:00
|
|
|
|
2015-01-23 09:28:07 -05:00
|
|
|
See the [examples](examples.md) chapter for an example which shows how last value queues are configured
|
2014-12-04 10:25:29 -05:00
|
|
|
and used with JMS.
|