Transport.java
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:2k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2008, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. package org.jboss.blacktie.jatmibroker.core.transport;
  19. import org.jboss.blacktie.jatmibroker.core.conf.ConfigurationException;
  20. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionException;
  21. public interface Transport {
  22. /**
  23.  * Get the receiver
  24.  * 
  25.  * @param serviceName
  26.  * @return
  27.  * @throws ConfigurationException
  28.  */
  29. public Sender getSender(String serviceName) throws ConnectionException;
  30. /**
  31.  * Create a sender to a service queue
  32.  * 
  33.  * @param replyTo
  34.  * @return
  35.  * @throws ConfigurationException
  36.  */
  37. public Sender createSender(Object replyTo) throws ConnectionException;
  38. /**
  39.  * Create a receiver on a service queue
  40.  * 
  41.  * @param serviceName
  42.  * @return
  43.  * @throws ConfigurationException
  44.  */
  45. public Receiver getReceiver(String serviceName) throws ConnectionException;
  46. /**
  47.  * Create a receiver on a temporary queue.
  48.  * 
  49.  * @return The receiver
  50.  * @throws ConfigurationException
  51.  */
  52. public Receiver createReceiver() throws ConnectionException;
  53. /**
  54.  * Create a receiver giving it the session to receive events upon.
  55.  * 
  56.  * @param session
  57.  *            The session to receive events
  58.  * @return The receiver
  59.  * @throws ConnectionException
  60.  *             Incase the received cannot be created
  61.  */
  62. public Receiver createReceiver(EventListener session)
  63. throws ConnectionException;
  64. public void close() throws ConnectionException;
  65. }