Beispiel #1
0
 def qfactory(self, key):
     return track_closed(LifoMemoryQueue)()
Beispiel #2
0
 def qfactory(self, key):
     path = os.path.join(self.qdir, str(key))
     return track_closed(FifoDiskQueue)(path)
Beispiel #3
0
 def qfactory(self, key):
     path = os.path.join(self.qdir, str(key))
     return track_closed(LifoSQLiteQueue)(path)
Beispiel #4
0
 def qfactory(self, key):
     path = os.path.join(self.qdir, str(key))
     return track_closed(LifoSQLiteQueue)(path)
Beispiel #5
0
 def qfactory(self, key):
     return track_closed(LifoMemoryQueue)()
Beispiel #6
0
 def qfactory(self, prio):
     path = os.path.join(self.qdir, str(prio))
     return track_closed(FifoSQLiteQueue)(path)
Beispiel #7
0
 def qfactory(self, key):
     path = os.path.join(self.qdir, str(key))
     return track_closed(FifoDiskQueue)(path)
Beispiel #8
0
 def qfactory(self, prio):
     path = os.path.join(self.qdir, str(prio))
     return track_closed(LifoDiskQueue)(path)
Beispiel #9
0
 def qfactory(self, prio):
     return track_closed(FifoMemoryQueue)()
Beispiel #10
0
 def qfactory(self, prio):
     path = os.path.join(self.qdir, str(prio))
     return track_closed(FifoSQLiteQueue)(path)
Beispiel #11
0
 def qfactory(self, prio):
     path = os.path.join(self.qdir, str(prio))
     return track_closed(LifoDiskQueue)(path)
Beispiel #12
0
 def qfactory(self, prio):
     return track_closed(FifoMemoryQueue)()