Ejemplo n.º 1
0
 public PersistentQueue(string storagePath, int maxSize)
 {
     _queue = new PersistentQueueImpl(storagePath, maxSize);
 }
Ejemplo n.º 2
0
 public PersistentQueue(string storagePath)
 {
     _queue = new PersistentQueueImpl(storagePath);
 }