public PersistentQueue(string storagePath, int maxSize)
 {
     _queue = new PersistentQueueImpl(storagePath, maxSize);
 }
 public PersistentQueue(string storagePath)
 {
     _queue = new PersistentQueueImpl(storagePath);
 }