nwaku/examples/v2
Hanno Cornelius 8987d4a3ff
feat: example using filter and lightpush (#1720)
* feat: add filter-lightpush example

* chore: examples/v2/filter_subscriber.nim

Co-authored-by: Ivan Folgueira Bande <128452529+Ivansete-status@users.noreply.github.com>

* chore: update examples/v2/filter_subscriber.nim

Co-authored-by: Ivan Folgueira Bande <128452529+Ivansete-status@users.noreply.github.com>

---------

Co-authored-by: Ivan Folgueira Bande <128452529+Ivansete-status@users.noreply.github.com>
2023-05-12 12:35:26 +02:00
..
README.md feat: example using filter and lightpush (#1720) 2023-05-12 12:35:26 +02:00
filter_subscriber.nim feat: example using filter and lightpush (#1720) 2023-05-12 12:35:26 +02:00
lightpush_publisher.nim feat: example using filter and lightpush (#1720) 2023-05-12 12:35:26 +02:00
nim.cfg feat(wakunode2): support log format format selection 2022-12-07 12:30:32 +01:00
publisher.nim chore(core): move utils time module to waku_core 2023-04-19 16:39:52 +02:00
subscriber.nim chore(core): move utils time module to waku_core 2023-04-19 16:39:52 +02:00

README.md

# basic2

TODO

# publisher/subscriber

Within examples/v2 you can find a publisher and a subscriber. The first one publishes messages to the default pubsub topic on a given content topic, and the second one runs forever listening to that pubsub topic and printing the content it receives.

Some notes:

  • These examples are meant to work even in if you are behind a firewall and you can't be discovered by discv5.
  • You only need to provide a reachable bootstrap peer (see our fleets)
  • The examples are meant to work out of the box.
  • Note that both services wait for some time until a given minimum amount of connections are reached. This is to ensure messages are gossiped.

Compile:

Make all examples.

make example2

Run:

Wait until the subscriber is ready.

./build/subscriber

And run a publisher

./build/publisher

See how the subscriber received the messages published by the publisher. Feel free to experiment from different machines in different locations.

resource-restricted publisher/subscriber (lightpush/filter)

To illustrate publishing and receiving messages on a resource-restricted client, examples/v2 also provides a lightpush_publisher and a filter_subscriber. The lightpush_publisher continually publishes messages via a lightpush service node to the default pubsub topic on a given content topic. The filter_subscriber subscribes via a filter service node to the same pubsub and content topic. It runs forever, maintaining this subscription and printing the content it receives.

compile and run:

Wait until the filter subscriber is ready.

./env.sh bash
nim c -r examples/v2/filter_subscriber.nim

And run a lightpush publisher

./env.sh bash
nim c -r examples/v2/lightpush_publisher.nim

See how the filter subscriber receives messages published by the lightpush publisher. Neither the publisher nor the subscriber participates in relay, but instead make use of service nodes to save resources. Feel free to experiment from different machines in different locations.