View Javadoc

1   /*
2    * Copyright (c) 2002 Peter Antman, Teknik i Media  <peter.antman@tim.se>
3    *
4    * $Id: MessageProducer.java,v 1.1.1.1 2004/05/19 12:26:42 pra Exp $
5    *
6    * This library is free software; you can redistribute it and/or
7    * modify it under the terms of the GNU Lesser General Public
8    * License as published by the Free Software Foundation; either
9    * version 2 of the License, or (at your option) any later version
10   * 
11   * This library is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14   * Lesser General Public License for more details.
15   * 
16   * You should have received a copy of the GNU Lesser General Public
17   * License along with this library; if not, write to the Free Software
18   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19   */
20  package org.backsource.adaptor.jms;
21  import javax.jms.Session;
22  import javax.jms.Message;
23  import javax.jms.Destination;
24  import javax.jms.JMSException;
25  /***
26   * A message producer that can send to both topics and queues; and also may returns the session it is using.
27   *
28   *
29   * @author <a href="mailto:pra@tim.se">Peter Antman</a>
30   * @version $Revision: 1.1.1.1 $
31   */
32  
33  public interface MessageProducer extends javax.jms.MessageProducer {
34     
35     public void send(Message message) throws JMSException;
36     public void send(
37                            Message message, 
38                         int deliveryMode, 
39                         int priority,
40                         long timeToLive
41                         )
42              throws JMSException;
43     public void send(Destination destination, Message message) throws JMSException;
44           public void send(
45                            Destination destination, 
46                         Message message, 
47                         int deliveryMode, 
48                         int priority,
49                         long timeToLive
50                         )
51              throws JMSException;
52     public Session getSession();
53  }// MessageProducer