For a full java-Implementation of such a subscriber, have a look at
scalaris/java-api/test/de/zib/scalaris/PubSubTest.java
and in there the testSubscriptions* methods
A Python equivalent can be found in the according unit test in
scalaris/python-api/scalaris_test.py
Regards
Nico Kruber
the pubsub system assumes that you register valid http-urls as
subscribers, i.e.:
./scalaris -subscribe "my-topic" "http://127.0.0.1:1234/notifications"
When you publish an event, Scalaris will send a json-message to this
url. The receiver of the notifications should be running a webserver on
the given ip-address+port.
Thorsten