本文整理匯總了Java中com.rabbitmq.client.Channel.basicCancel方法的典型用法代碼示例。如果您正苦於以下問題:Java Channel.basicCancel方法的具體用法?Java Channel.basicCancel怎麽用?Java Channel.basicCancel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.rabbitmq.client.Channel
的用法示例。
在下文中一共展示了Channel.basicCancel方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: close
import com.rabbitmq.client.Channel; //導入方法依賴的package包/類
private void close(Connection connection, Channel channel) {
try {
if (channel != null && channel.isOpen()) {
if (this.consumerTag != null) {
channel.basicCancel(this.consumerTag);
this.consumerTag = null;
}
log.info("Closing RabbitMQ Channel - " + this.serverIP);
channel.close();
this.channel = null;
}
if (connection != null && connection.isOpen()) {
log.info("Closing RabbitMQ Connection - " + this.serverIP);
connection.close(CLOSE_CONNECTION_TIMEOUT);
this.connection = null;
}
} catch (Exception e) {
log.error("Failed to close RabbitMQ connections " + this.serverIP, e);
}
}
示例2: unsubscribe
import com.rabbitmq.client.Channel; //導入方法依賴的package包/類
@Override
public void unsubscribe(final UUID subscriberId, final EventSubscriber subscriber) throws EventBusException {
try {
final String classname = subscriber.getClass().getName();
final String queueName = UUID.nameUUIDFromBytes(classname.getBytes()).toString();
final Ternary<String, Channel, EventSubscriber> queueDetails = s_subscribers.get(queueName);
final Channel channel = queueDetails.second();
channel.basicCancel(queueName);
s_subscribers.remove(queueName, queueDetails);
} catch (final IOException e) {
throw new EventBusException("Failed to unsubscribe from event bus due to " + e.getMessage(), e);
}
}