?? msgproducerimpl.java
字號:
/**
* Project:ms4j
* Date:2007-2-15
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
*/
package com.sunjob.ms4j.client;
import javax.jms.Destination;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.MessageProducer;
import javax.jms.Queue;
import javax.jms.QueueSender;
import javax.jms.Topic;
import javax.jms.TopicPublisher;
/**
* @author sunjob
*
*/
public class MsgProducerImpl implements MessageProducer, QueueSender,
TopicPublisher {
/* (non-Javadoc)
* @see javax.jms.MessageProducer#close()
*/
public void close() throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#getDeliveryMode()
*/
public int getDeliveryMode() throws JMSException {
// TODO Auto-generated method stub
return 0;
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#getDestination()
*/
public Destination getDestination() throws JMSException {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#getDisableMessageID()
*/
public boolean getDisableMessageID() throws JMSException {
// TODO Auto-generated method stub
return false;
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#getDisableMessageTimestamp()
*/
public boolean getDisableMessageTimestamp() throws JMSException {
// TODO Auto-generated method stub
return false;
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#getPriority()
*/
public int getPriority() throws JMSException {
// TODO Auto-generated method stub
return 0;
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#getTimeToLive()
*/
public long getTimeToLive() throws JMSException {
// TODO Auto-generated method stub
return 0;
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#send(javax.jms.Message)
*/
public void send(Message arg0) throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#send(javax.jms.Destination, javax.jms.Message)
*/
public void send(Destination arg0, Message arg1) throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#send(javax.jms.Message, int, int, long)
*/
public void send(Message arg0, int arg1, int arg2, long arg3)
throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#send(javax.jms.Destination, javax.jms.Message, int, int, long)
*/
public void send(Destination arg0, Message arg1, int arg2, int arg3,
long arg4) throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#setDeliveryMode(int)
*/
public void setDeliveryMode(int arg0) throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#setDisableMessageID(boolean)
*/
public void setDisableMessageID(boolean arg0) throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#setDisableMessageTimestamp(boolean)
*/
public void setDisableMessageTimestamp(boolean arg0) throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#setPriority(int)
*/
public void setPriority(int arg0) throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.MessageProducer#setTimeToLive(long)
*/
public void setTimeToLive(long arg0) throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.QueueSender#getQueue()
*/
public Queue getQueue() throws JMSException {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see javax.jms.QueueSender#send(javax.jms.Queue, javax.jms.Message)
*/
public void send(Queue arg0, Message arg1) throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.QueueSender#send(javax.jms.Queue, javax.jms.Message, int, int, long)
*/
public void send(Queue arg0, Message arg1, int arg2, int arg3, long arg4)
throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.TopicPublisher#getTopic()
*/
public Topic getTopic() throws JMSException {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see javax.jms.TopicPublisher#publish(javax.jms.Message)
*/
public void publish(Message arg0) throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.TopicPublisher#publish(javax.jms.Topic, javax.jms.Message)
*/
public void publish(Topic arg0, Message arg1) throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.TopicPublisher#publish(javax.jms.Message, int, int, long)
*/
public void publish(Message arg0, int arg1, int arg2, long arg3)
throws JMSException {
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see javax.jms.TopicPublisher#publish(javax.jms.Topic, javax.jms.Message, int, int, long)
*/
public void publish(Topic arg0, Message arg1, int arg2, int arg3, long arg4)
throws JMSException {
// TODO Auto-generated method stub
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -