25.2. Last-Value プロパティーの使用
最終値を識別するために使用するプロパティー名は
"_HQ_LVQ_NAME" (または、定数 Message.HDR_LAST_VALUE_NAME from the Core API) です。
たとえば、Last-Value プロパティーに対して同じ値を持つ 2 つのメッセージが Last-Value キューに送信された場合は、最新メッセージのみがキューに保持されます。
// 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);
// send 2nd message with Last-Value property set to STOCK_NAME
message =
session.createTextMessage("2nd message with Last-Value property set");
message.setStringProperty("_HQ_LVQ_NAME", "STOCK_NAME");
producer.send(message);
...
// only the 2nd message will be received: it is the latest with
// the Last-Value property set
TextMessage messageReceived = (TextMessage)messageConsumer.receive(5000);
System.out.format("Received message: %s
", messageReceived.getText());