pip install -r requirements.txtExecutes RPC worker with localhost Rabbitmq:
python main/rpc_worker.pyFor remote Rabbitmq Server (example: 192.168.1.77):
python main/rpc_worker.py \
--uri=username:password@192.168.1.77Default RPC master (localhost and a sequence of numbers from 20 to 40):
python main/rpc_master.pyFor other configuration, use the following command:
python main/rpc_master.py \
--uri=username:password@192.168.1.77 \
--number=36Invoke Subscriber with the following command:
python main/subscriber.py \
--uri=username:password@192.168.1.77Publish one number:
python main/publisher.py \
--uri=username:password@192.168.1.77 \
--number=36or a sequence of numbers:
python main/publisher.py \
--uri=username:password@192.168.1.77