Exemplo n.º 1
0
"""
X7 mq client function
"""

from x7_mq import MqClient

#Message from web to server
w2sDict = { 'X7_Q':'X7_Q_W2S', 'X7_E':'X7_E_W2S', 'X7_RK':'X7_PK_W2S' }
client = MqClient( w2sDict )
client.connect()
client.send( {"hello": "world"} )      
client.send( {"hello1": "world1"} )     
   
Exemplo n.º 2
0
"""
X7 mq client function
"""

from x7_mq import MqClient

#Message from web to server
s2wDict = { 'X7_Q':'X7_Q_S2W', 'X7_E':'X7_E_S2W', 'X7_RK':'X7_PK_S2W' }

client = MqClient( s2wDict )
client.connect()
client.send( {"type": "log", "mesg":"hello1"} )      
client.send( {"type": "prog", "mesg":90} )  
client.send( {"type": "cmd", "mesg":"complete"} )