You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now we can use the subscriber to receive data. For simplicity, we assume that we periodically check for new data. It
69
-
is also possible to explicitly wait for data using the [WaitSet](../../../iceoryx_examples/waitset/README.md) or
70
-
the [Listener](../../../iceoryx_examples/callbacks/README.md). The code to receive the data is the same, the only difference is the way we wake up before checking for data.
69
+
is also possible to explicitly wait for data using the [WaitSet](../examples/waitset.md) or
70
+
the [Listener](../examples/callbacks.md). The code to receive the data is the same, the only difference is the way we wake up before checking for data.
71
71
72
72
```cpp
73
73
while (keepRunning)
@@ -94,7 +94,7 @@ while (keepRunning)
94
94
By calling `take` we get an `expected` and hence we have to handle the potential error.
95
95
96
96
And that's it. We have created our first simple iceoryx example.
97
-
[Here](../../../iceoryx_examples/README.md) you can find further examples
97
+
[Here](../examples/index.md) you can find further examples
98
98
which demonstrate how iceoryx can be used and describe our API in more detail.
99
99
100
100
Now that we have applications capable of sending and receiving data, we can run the complete iceoryx system.
@@ -148,7 +148,7 @@ Shared memory is physical memory that is made accessible to multiple processes v
0 commit comments