Channel channel = connection.createChannel(false);
Queue.DeclareOk declareResult = channel.queueDeclare();
_replyToQueue = declareResult.getQueue();
channel.queueBind(_replyToQueue, getExchange(), _replyToQueue);
connection.close();
} catch (IOException e) {
throw new RuntimeException("Failed to create reply to queue", e);
}