|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 |
javax.jms Interface MessageProducer
- 所有已知子接口:
- QueueSender, TopicPublisher
public interface MessageProducer
A client uses a MessageProducer
object to send messages to a
destination. A MessageProducer
object is created by passing a
Destination
object to a message-producer creation method
supplied by a session.
MessageProducer
is the parent interface for all message
producers.
A client also has the option of creating a message producer without
supplying a destination. In this case, a destination must be provided with
every send operation. A typical use for this kind of message producer is
to send replies to requests using the request's JMSReplyTo
destination.
A client can specify a default delivery mode, priority, and time to live for messages sent by a message producer. It can also specify the delivery mode, priority, and time to live for an individual message.
A client can specify a time-to-live value in milliseconds for each message it sends. This value defines a message expiration time that is the sum of the message's time-to-live and the GMT when it is sent (for transacted sends, this is the time the client sends the message, not the time the transaction is committed).
A JMS provider should do its best to expire messages accurately; however, the JMS API does not define the accuracy provided.
- 版本:
- 1.1 - February 2, 2002
- 作者:
- Mark Hapner, Rich Burridge, Kate Stout
- 另请参见:
TopicPublisher
,QueueSender
,Session.createProducer(javax.jms.Destination)
方法摘要 | |
---|---|
void |
close()
Closes the message producer. |
int |
getDeliveryMode()
Gets the producer's default delivery mode. |
Destination |
getDestination()
Gets the destination associated with this MessageProducer . |
boolean |
getDisableMessageID()
Gets an indication of whether message IDs are disabled. |
boolean |
getDisableMessageTimestamp()
Gets an indication of whether message timestamps are disabled. |
int |
getPriority()
Gets the producer's default priority. |
long |
getTimeToLive()
Gets the default length of time in milliseconds from its dispatch time that a produced message should be retained by the message system. |
void |
send(Destination destination,
Message message)
Sends a message to a destination for an unidentified message producer. |
void |
send(Destination destination,
Message message,
int deliveryMode,
int priority,
long timeToLive)
Sends a message to a destination for an unidentified message producer, specifying delivery mode, priority and time to live. |
void |
send(Message message)
Sends a message using the MessageProducer 's
default delivery mode, priority, and time to live. |
void |
send(Message message,
int deliveryMode,
int priority,
long timeToLive)
Sends a message to the destination, specifying delivery mode, priority, and time to live. |
void |
setDeliveryMode(int deliveryMode)
Sets the producer's default delivery mode. |
void |
setDisableMessageID(boolean value)
Sets whether message IDs are disabled. |
void |
setDisableMessageTimestamp(boolean value)
Sets whether message timestamps are disabled. |
void |
setPriority(int defaultPriority)
Sets the producer's default priority. |
void |
setTimeToLive(long timeToLive)
Sets the default length of time in milliseconds from its dispatch time that a produced message should be retained by the message system. |
方法详细信息 |
---|
setDisableMessageID
void setDisableMessageID(boolean value) throws JMSException
- Sets whether message IDs are disabled.
Since message IDs take some effort to create and increase a message's size, some JMS providers may be able to optimize message overhead if they are given a hint that the message ID is not used by an application. By calling the
setDisableMessageID
method on this message producer, a JMS client enables this potential optimization for all messages sent by this message producer. If the JMS provider accepts this hint, these messages must have the message ID set to null; if the provider ignores the hint, the message ID must be set to its normal unique value.Message IDs are enabled by default.
- 参数:
value
- indicates if message IDs are disabled- 抛出异常:
JMSException
- if the JMS provider fails to set message ID to disabled due to some internal error.
getDisableMessageID
boolean getDisableMessageID() throws JMSException
- Gets an indication of whether message IDs are disabled.
- 返回:
- an indication of whether message IDs are disabled
- 抛出异常:
JMSException
- if the JMS provider fails to determine if message IDs are disabled due to some internal error.
setDisableMessageTimestamp
void setDisableMessageTimestamp(boolean value) throws JMSException
- Sets whether message timestamps are disabled.
Since timestamps take some effort to create and increase a message's size, some JMS providers may be able to optimize message overhead if they are given a hint that the timestamp is not used by an application. By calling the
setDisableMessageTimestamp
method on this message producer, a JMS client enables this potential optimization for all messages sent by this message producer. If the JMS provider accepts this hint, these messages must have the timestamp set to zero; if the provider ignores the hint, the timestamp must be set to its normal value.Message timestamps are enabled by default.
- 参数:
value
- indicates if message timestamps are disabled- 抛出异常:
JMSException
- if the JMS provider fails to set timestamps to disabled due to some internal error.
getDisableMessageTimestamp
boolean getDisableMessageTimestamp() throws JMSException
- Gets an indication of whether message timestamps are disabled.
- 返回:
- an indication of whether message timestamps are disabled
- 抛出异常:
JMSException
- if the JMS provider fails to determine if timestamps are disabled due to some internal error.
setDeliveryMode
void setDeliveryMode(int deliveryMode) throws JMSException
- Sets the producer's default delivery mode.
Delivery mode is set to
PERSISTENT
by default. - 参数:
deliveryMode
- the message delivery mode for this message producer; legal values areDeliveryMode.NON_PERSISTENT
andDeliveryMode.PERSISTENT
- 抛出异常:
JMSException
- if the JMS provider fails to set the delivery mode due to some internal error.- 另请参见:
getDeliveryMode()
,DeliveryMode.NON_PERSISTENT
,DeliveryMode.PERSISTENT
,Message.DEFAULT_DELIVERY_MODE
getDeliveryMode
int getDeliveryMode() throws JMSException
- Gets the producer's default delivery mode.
- 返回:
- the message delivery mode for this message producer
- 抛出异常:
JMSException
- if the JMS provider fails to get the delivery mode due to some internal error.- 另请参见:
setDeliveryMode(int)
setPriority
void setPriority(int defaultPriority) throws JMSException
- Sets the producer's default priority.
The JMS API defines ten levels of priority value, with 0 as the lowest priority and 9 as the highest. Clients should consider priorities 0-4 as gradations of normal priority and priorities 5-9 as gradations of expedited priority. Priority is set to 4 by default.
- 参数:
defaultPriority
- the message priority for this message producer; must be a value between 0 and 9- 抛出异常:
JMSException
- if the JMS provider fails to set the priority due to some internal error.- 另请参见:
getPriority()
,Message.DEFAULT_PRIORITY
getPriority
int getPriority() throws JMSException
- Gets the producer's default priority.
- 返回:
- the message priority for this message producer
- 抛出异常:
JMSException
- if the JMS provider fails to get the priority due to some internal error.- 另请参见:
setPriority(int)
setTimeToLive
void setTimeToLive(long timeToLive) throws JMSException
- Sets the default length of time in milliseconds from its dispatch time
that a produced message should be retained by the message system.
Time to live is set to zero by default.
- 参数:
timeToLive
- the message time to live in milliseconds; zero is unlimited- 抛出异常:
JMSException
- if the JMS provider fails to set the time to live due to some internal error.- 另请参见:
getTimeToLive()
,Message.DEFAULT_TIME_TO_LIVE
getTimeToLive
long getTimeToLive() throws JMSException
- Gets the default length of time in milliseconds from its dispatch time
that a produced message should be retained by the message system.
- 返回:
- the message time to live in milliseconds; zero is unlimited
- 抛出异常:
JMSException
- if the JMS provider fails to get the time to live due to some internal error.- 另请参见:
setTimeToLive(long)
getDestination
Destination getDestination() throws JMSException
- Gets the destination associated with this
MessageProducer
. - 返回:
- this producer's
Destination/
- 抛出异常:
JMSException
- if the JMS provider fails to get the destination for thisMessageProducer
due to some internal error.- 从以下版本开始:
- 1.1
close
void close() throws JMSException
- Closes the message producer.
Since a provider may allocate some resources on behalf of a
MessageProducer
outside the Java virtual machine, clients should close them when they are not needed. Relying on garbage collection to eventually reclaim these resources may not be timely enough. - 抛出异常:
JMSException
- if the JMS provider fails to close the producer due to some internal error.
send
void send(Message message) throws JMSException
- Sends a message using the
MessageProducer
's default delivery mode, priority, and time to live. - 参数:
message
- the message to send- 抛出异常:
JMSException
- if the JMS provider fails to send the message due to some internal error.MessageFormatException
- if an invalid message is specified.InvalidDestinationException
- if a client uses this method with aMessageProducer
with an invalid destination.UnsupportedOperationException
- if a client uses this method with aMessageProducer
that did not specify a destination at creation time.- 从以下版本开始:
- 1.1
- 另请参见:
Session.createProducer(javax.jms.Destination)
,MessageProducer
send
void send(Message message, int deliveryMode, int priority, long timeToLive) throws JMSException
- Sends a message to the destination, specifying delivery mode, priority, and
time to live.
- 参数:
message
- the message to senddeliveryMode
- the delivery mode to usepriority
- the priority for this messagetimeToLive
- the message's lifetime (in milliseconds)- 抛出异常:
JMSException
- if the JMS provider fails to send the message due to some internal error.MessageFormatException
- if an invalid message is specified.InvalidDestinationException
- if a client uses this method with aMessageProducer
with an invalid destination.UnsupportedOperationException
- if a client uses this method with aMessageProducer
that did not specify a destination at creation time.- 从以下版本开始:
- 1.1
- 另请参见:
Session.createProducer(javax.jms.Destination)
send
void send(Destination destination, Message message) throws JMSException
- Sends a message to a destination for an unidentified message producer.
Uses the
MessageProducer
's default delivery mode, priority, and time to live.Typically, a message producer is assigned a destination at creation time; however, the JMS API also supports unidentified message producers, which require that the destination be supplied every time a message is sent.
- 参数:
destination
- the destination to send this message tomessage
- the message to send- 抛出异常:
JMSException
- if the JMS provider fails to send the message due to some internal error.MessageFormatException
- if an invalid message is specified.InvalidDestinationException
- if a client uses this method with an invalid destination.UnsupportedOperationException
- if a client uses this method with aMessageProducer
that specified a destination at creation time.- 从以下版本开始:
- 1.1
- 另请参见:
Session.createProducer(javax.jms.Destination)
,MessageProducer
send
void send(Destination destination, Message message, int deliveryMode, int priority, long timeToLive) throws JMSException
- Sends a message to a destination for an unidentified message producer,
specifying delivery mode, priority and time to live.
Typically, a message producer is assigned a destination at creation time; however, the JMS API also supports unidentified message producers, which require that the destination be supplied every time a message is sent.
- 参数:
destination
- the destination to send this message tomessage
- the message to senddeliveryMode
- the delivery mode to usepriority
- the priority for this messagetimeToLive
- the message's lifetime (in milliseconds)- 抛出异常:
JMSException
- if the JMS provider fails to send the message due to some internal error.MessageFormatException
- if an invalid message is specified.InvalidDestinationException
- if a client uses this method with an invalid destination.- 从以下版本开始:
- 1.1
- 另请参见:
Session.createProducer(javax.jms.Destination)
|
Java EE 5 SDK 深圳电信培训中心.徐海蛟老师. |
||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造器 | 方法 | 详细信息: 字段 | 构造器 | 方法 |
提交错误或意见
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。深圳电信培训中心.徐海蛟老师教学参考.