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.
31 lines
791 B
31 lines
791 B
package javax.jms; |
|
|
|
public abstract interface MessageConsumer |
|
{ |
|
public abstract String getMessageSelector() |
|
throws JMSException; |
|
|
|
public abstract MessageListener getMessageListener() |
|
throws JMSException; |
|
|
|
public abstract void setMessageListener(MessageListener paramMessageListener) |
|
throws JMSException; |
|
|
|
public abstract Message receive() |
|
throws JMSException; |
|
|
|
public abstract Message receive(long paramLong) |
|
throws JMSException; |
|
|
|
public abstract Message receiveNoWait() |
|
throws JMSException; |
|
|
|
public abstract void close() |
|
throws JMSException; |
|
} |
|
|
|
|
|
/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\MessageConsumer.class |
|
* Java compiler version: 5 (49.0) |
|
* JD-Core Version: 0.7.1 |
|
*/ |