本文整理汇总了Python中Message.send方法的典型用法代码示例。如果您正苦于以下问题:Python Message.send方法的具体用法?Python Message.send怎么用?Python Message.send使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Message
的用法示例。
在下文中一共展示了Message.send方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: stockerPiece
# 需要导入模块: import Message [as 别名]
# 或者: from Message import send [as 别名]
def stockerPiece(self):
print("[-->] On veut stocker")
# Vérification
if self.traite == True:
# Stockage dans l'entrepôt
print("[-->] On stocke")
Message.send("fileEntrepot",self.nom,self.resultatCourant)
示例2: envoyerPiece
# 需要导入模块: import Message [as 别名]
# 或者: from Message import send [as 别名]
def envoyerPiece(self):
numeroMachine = random.randint(0,1);
if numeroMachine == 0:
typeMachine = "mA"
else:
typeMachine = "mB"
#print("fileMachine ; "+typeMachine+" ; "+self.type)
Message.send("fileMachine",typeMachine,self.type)
示例3: renvoyerPiece
# 需要导入模块: import Message [as 别名]
# 或者: from Message import send [as 别名]
def renvoyerPiece(self):
print("[XXX] On veut renvoyer la pièce")
if len(self.listeAutresMachines) != 0:
print("[XXX] On la renvoie ")
Message.send("fileMachine",self.listeAutresMachines[0],self.pieceCourante.type)