Oracle8i Application Developer's Guide - Advanced Queuing Release 2 (8.1.6) Part Number A76938-01 |
|
JMS Operational Interface: Basic Operations (Shared Interfaces), 26 of 58
Set Default Priority for All Messages Sent by a Message Producer
Priority values can be any integer. A smaller number indicates higher priority.
If a priority value is explicitly specified during the send operation, it overrides the producer's default value set by this method.
See Chapter 3, "AQ Programmatic Environments" for a list of available functions in each programmatic environment. Use the following syntax references for each programmatic environment:
See Chapter 3, "AQ Programmatic Environments" for a list of available functions in each programmatic environment.
/* Set default priority value to 2 for all messages sent by the QueueSender*/ QueueSender sender; sender.setPriority(2);
/* Set default priority value to 2 for all messages sent by the TopicPublisher*/ TopicPublisher publisher; publisher.setPriority(1);
|
![]() Copyright © 1996-2000, Oracle Corporation. All Rights Reserved. |
|