예제 #1
0
 def on_welcome(self):
     Maker.on_welcome(self)
     Taker.on_welcome(self)
     if self.waittime > 0:
         ##zero means never be a taker
         self.takerthread = TakerThread(self)
         self.takerthread.start()
예제 #2
0
 def on_welcome(self):
     Maker.on_welcome(self)
     Taker.on_welcome(self)
     self.takerthread = TakerThread(self)
     self.takerthread.start()
예제 #3
0
 def on_welcome(self):
     Taker.on_welcome(self)
     if not self.tumbler_thread:
         self.tumbler_thread = TumblerThread(self)
         self.tumbler_thread.start()
예제 #4
0
 def on_welcome(self):
     Taker.on_welcome(self)
     if not self.tumbler_thread:
         self.tumbler_thread = TumblerThread(self)
         self.tumbler_thread.start()
예제 #5
0
 def on_welcome(self):
     Taker.on_welcome(self)
     PaymentThread(self).start()
예제 #6
0
 def on_welcome(self):
     Taker.on_welcome(self)
     PaymentThread(self).start()
 def on_welcome(self):
     Maker.on_welcome(self)
     Taker.on_welcome(self)
     self.takerthread = TakerThread(self)
     self.takerthread.start()
예제 #8
0
 def on_welcome(self):
     Taker.on_welcome(self)
     if not self.isolated:
         PaymentThread(self).start()