nwaku/examples
Ivan FB 1e8f577104
chore(cbindings): avoid using global var in libwaku.nim (#2118)
* libwaku: Avoid global variable and changing callback signature

* Better signature for the callback. Two new parameters have been added:
  one aimed to allow passing the caller result code; the other
  param is to pass an optional userData pointer that might need
  to be linked locally with the Context object. For example, this is needed
  in Rust to make the passed closures live as
  long as the Context.

* waku_example.c: adaptation to the latest changes

* libwaku.h: removing 'waku_set_user_data' function

* libwaku.nim: renaming parameter in WakuCallBack (isOk -> callerRet)
2023-10-23 08:37:28 +02:00
..
cbindings chore(cbindings): avoid using global var in libwaku.nim (#2118) 2023-10-23 08:37:28 +02:00
cpp chore(cbindings): Adding cpp example that integrates the 'libwaku' (#2079) 2023-09-28 11:10:42 +02:00
nodejs Adding example on how to integrate a Waku node in NodeJs (#1751) 2023-08-02 10:45:15 +02:00
python feat(cbindings): tiny waku relay example in Python (#1793) 2023-07-31 17:54:26 +02:00
README.md chore: remove references to v2 (#1898) 2023-08-09 18:11:50 +01:00
filter_subscriber.nim feat: HTTP REST API: Filter support v2 (#1890) 2023-09-14 21:28:57 +02:00
lightpush_publisher.nim chore: remove references to v2 (#1898) 2023-08-09 18:11:50 +01:00
nim.cfg chore: remove references to v2 (#1898) 2023-08-09 18:11:50 +01:00
publisher.nim feat: Autosharding API for RELAY subscriptions (#1983) 2023-09-26 07:33:52 -04:00
subscriber.nim feat: Autosharding API for RELAY subscriptions (#1983) 2023-09-26 07:33:52 -04:00

README.md

Examples

Compile

Make all examples.

make example2

## basic2

TODO

## publisher/subscriber

Within examples/ 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.

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.

Run Start the filter subscriber.

./build/filter_subscriber

And run a lightpush publisher

./build/lightpush_publisher

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.