Version 2

    MessageProducer

     

    A MessageProducer is a single-threaded context for sending messages.

     

    JMS Facade implementation of a MessageProducer is

    org.jboss.jms.client.JBossMessageProducer

    . The complete set of JMS interfaces implemented by this class are:

     

    • javax.jms.MessageProducer
    • javax.jms.QueueSender
    • javax.jms.TopicPublisher

     

    Instances of this class are physically constructed by the Session delegate (

    org.jboss.jms.delegate.SessionDelegate

    ).

    JBossMessageProducer delegates to a ProducerDelegate instance. It is the delegate implementation that sends messages to the Messaging Core.

     

    Back to JMS Facade