Example usage for com.rabbitmq.utility BlockingCell uninterruptibleGet

List of usage examples for com.rabbitmq.utility BlockingCell uninterruptibleGet

Introduction

In this page you can find the example usage for com.rabbitmq.utility BlockingCell uninterruptibleGet.

Prototype

public synchronized T uninterruptibleGet() 

Source Link

Document

As get(), but catches and ignores InterruptedException, retrying until a value appears.

Usage

From source file:net.lshift.accent.ControlledConnectionProxy.java

License:Mozilla Public License

private void waitAndLogException(BlockingCell<Exception> bc) {
    reportAndLogNonNullException(bc.uninterruptibleGet());
}