171172173174175176177178179180181
{ nanoTimeout = _receivedCondition.awaitNanos(nanoTimeout); if (nanoTimeout <= 0 && !_ready && _error == null) { _error = new AMQTimeoutException("Server did not respond in a timely fashion", null); _ready = true; } } } catch (InterruptedException e)
199200201202203204205206207208209
{ nanoTimeout = _receivedCondition.awaitNanos(nanoTimeout); if (nanoTimeout <= 0 && !_ready && _error == null) { _error = new AMQTimeoutException("Server did not respond in a timely fashion"); _ready = true; } } } catch (InterruptedException e)
8687888990919293949596
{ closeWaiter.await(timeout); } catch (AMQTimeoutException te) { throw new AMQTimeoutException("Close did not complete in timely fashion", te); } } else { _conn.getProtocolHandler().closeConnection(timeout);
172173174175176177178179180181182
{ nanoTimeout = _receivedCondition.awaitNanos(nanoTimeout); if (nanoTimeout <= 0 && !_ready && _error == null) { _error = new AMQTimeoutException("Server did not respond in a timely fashion", null); _ready = true; } } catch (InterruptedException e) {
165166167168169170171172173174175
173174175176177178179180181182183