本文整理汇总了Java中org.jivesoftware.smackx.workgroup.packet.DepartQueuePacket类的典型用法代码示例。如果您正苦于以下问题:Java DepartQueuePacket类的具体用法?Java DepartQueuePacket怎么用?Java DepartQueuePacket使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DepartQueuePacket类属于org.jivesoftware.smackx.workgroup.packet包,在下文中一共展示了DepartQueuePacket类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: departQueue
import org.jivesoftware.smackx.workgroup.packet.DepartQueuePacket; //导入依赖的package包/类
/**
* Departs the workgroup queue. If the user is not currently in the queue, this
* method will do nothing.<p>
* <p/>
* Normally, the user would not manually leave the queue. However, they may wish to
* under certain circumstances -- for example, if they no longer wish to be routed
* to an agent because they've been waiting too long.
*
* @throws XMPPException if an error occured trying to send the depart queue
* request to the server.
*/
public void departQueue() throws XMPPException {
// If not in the queue ignore the depart request.
if (!inQueue) {
return;
}
DepartQueuePacket departPacket = new DepartQueuePacket(this.workgroupJID);
PacketCollector collector = this.connection.createPacketCollector(new PacketIDFilter(departPacket.getPacketID()));
connection.sendPacket(departPacket);
IQ response = (IQ)collector.nextResult(5000);
collector.cancel();
if (response == null) {
throw new XMPPException("No response from the server.");
}
if (response.getError() != null) {
throw new XMPPException(response.getError());
}
// Notify listeners that we're no longer in the queue.
fireQueueDepartedEvent();
}
开发者ID:ice-coffee,项目名称:EIM,代码行数:35,代码来源:Workgroup.java
示例2: departQueue
import org.jivesoftware.smackx.workgroup.packet.DepartQueuePacket; //导入依赖的package包/类
/**
* Departs the workgroup queue. If the user is not currently in the queue,
* this method will do nothing.
* <p>
* <p/>
* Normally, the user would not manually leave the queue. However, they may
* wish to under certain circumstances -- for example, if they no longer
* wish to be routed to an agent because they've been waiting too long.
*
* @throws XMPPException
* if an error occured trying to send the depart queue request
* to the server.
*/
public void departQueue() throws XMPPException {
// If not in the queue ignore the depart request.
if (!inQueue) {
return;
}
DepartQueuePacket departPacket = new DepartQueuePacket(
this.workgroupJID);
PacketCollector collector = this.connection
.createPacketCollector(new PacketIDFilter(departPacket
.getPacketID()));
connection.sendPacket(departPacket);
IQ response = (IQ) collector.nextResult(5000);
collector.cancel();
if (response == null) {
throw new XMPPException("No response from the server.");
}
if (response.getError() != null) {
throw new XMPPException(response.getError());
}
// Notify listeners that we're no longer in the queue.
fireQueueDepartedEvent();
}
开发者ID:ikantech,项目名称:xmppsupport_v2,代码行数:40,代码来源:Workgroup.java
示例3: dequeueUser
import org.jivesoftware.smackx.workgroup.packet.DepartQueuePacket; //导入依赖的package包/类
/**
* Removes a user from the workgroup queue. This is an administrative action that the
* <p/>
* The agent is not guaranteed of having privileges to perform this action; an exception
* denying the request may be thrown.
*
* @param userID the ID of the user to remove.
* @throws XMPPException if an exception occurs.
* @throws NotConnectedException
*/
public void dequeueUser(String userID) throws XMPPException, NotConnectedException {
// todo: this method simply won't work right now.
DepartQueuePacket departPacket = new DepartQueuePacket(this.workgroupJID);
// PENDING
this.connection.sendStanza(departPacket);
}
开发者ID:TTalkIM,项目名称:Smack,代码行数:18,代码来源:AgentSession.java
示例4: departQueue
import org.jivesoftware.smackx.workgroup.packet.DepartQueuePacket; //导入依赖的package包/类
/**
* Departs the workgroup queue. If the user is not currently in the queue, this
* method will do nothing.<p>
* <p/>
* Normally, the user would not manually leave the queue. However, they may wish to
* under certain circumstances -- for example, if they no longer wish to be routed
* to an agent because they've been waiting too long.
*
* @throws XMPPErrorException if an error occured trying to send the depart queue
* request to the server.
* @throws NoResponseException
* @throws NotConnectedException
*/
public void departQueue() throws NoResponseException, XMPPErrorException, NotConnectedException {
// If not in the queue ignore the depart request.
if (!inQueue) {
return;
}
DepartQueuePacket departPacket = new DepartQueuePacket(this.workgroupJID);
connection.createPacketCollectorAndSend(departPacket).nextResultOrThrow();
// Notify listeners that we're no longer in the queue.
fireQueueDepartedEvent();
}
开发者ID:TTalkIM,项目名称:Smack,代码行数:26,代码来源:Workgroup.java
注:本文中的org.jivesoftware.smackx.workgroup.packet.DepartQueuePacket类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论