/**
  * Get last assigned id for a queue
  *
  * @param queueName name of queue
  * @return last assigned id of queue
  * @throws AndesException
  */
 @Override
 public long getQueueToLastAssignedId(String queueName) throws AndesException {
   try {
     return wrappedAndesContextStoreInstance.getQueueToLastAssignedId(queueName);
   } catch (AndesStoreUnavailableException exception) {
     notifyFailures(exception);
     throw exception;
   }
 }