Ted

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

1) android (client):

Getting Started with RabbitMQ on Android – Part 1介绍了如何在android上使用rabbitmq接收server端的push通知。

 

2) server :

server端安装rabbitmq,写了个python脚本来发送消息,例子代码:

#!/usr/bin/env python
import pika
import time

connection = pika.BlockingConnection(pika.ConnectionParameters(
host='localhost'))
channel = connection.channel()


channel.queue_declare(queue='hello')

i = 0
while True:
channel.basic_publish(exchange='logs',
routing_key='hello',
body='Hello World, ' + str(i))
print " [x] Sent 'Hello World!'" + str(i)
i += 1
time.sleep(1)
connection.close()

关于用python如何用rabbitmq发消息,参见:RabbitMQ introduction 

代码见:rabbitmq (RabbitMQ - messaging that just works)

 

posted on 2012-03-31 23:36  wufawei  阅读(1425)  评论(0编辑  收藏  举报