def _makeQueueCtxByAction(self, action=None): return QueueCtx(entityType=QUEUE_TYPE.BOOTCAMP, waitingID='')
def _doEffect(self, dispatcher): self.__stillRunning = True result = yield dispatcher.sendPrbRequest(QueueCtx()) self.__stillRunning = False if not result: self._tutorial.refuse()
def _doEffect(self, dispatcher): self.__stillRunning = True self.__result = yield dispatcher.sendPrbRequest(QueueCtx()) self.__stillRunning = False
def _makeQueueCtxByAction(self, action = None): return QueueCtx()