You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
932 B
32 lines
932 B
package javax.jms; |
|
|
|
public abstract interface QueueSession |
|
extends Session |
|
{ |
|
public abstract Queue createQueue(String paramString) |
|
throws JMSException; |
|
|
|
public abstract QueueReceiver createReceiver(Queue paramQueue) |
|
throws JMSException; |
|
|
|
public abstract QueueReceiver createReceiver(Queue paramQueue, String paramString) |
|
throws JMSException; |
|
|
|
public abstract QueueSender createSender(Queue paramQueue) |
|
throws JMSException; |
|
|
|
public abstract QueueBrowser createBrowser(Queue paramQueue) |
|
throws JMSException; |
|
|
|
public abstract QueueBrowser createBrowser(Queue paramQueue, String paramString) |
|
throws JMSException; |
|
|
|
public abstract TemporaryQueue createTemporaryQueue() |
|
throws JMSException; |
|
} |
|
|
|
|
|
/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\QueueSession.class |
|
* Java compiler version: 5 (49.0) |
|
* JD-Core Version: 0.7.1 |
|
*/ |