예제 #1
0
 public PersistentQueue(string storagePath, int maxSize)
 {
     _queue = new PersistentQueueImpl(storagePath, maxSize);
 }
예제 #2
0
 public PersistentQueue(string storagePath)
 {
     _queue = new PersistentQueueImpl(storagePath);
 }