pvac: add sync. monitor

This commit is contained in:
Michael Davidsaver
2017-07-18 17:23:21 +02:00
parent 10b4ba8ae5
commit 97e1cd4c69
7 changed files with 305 additions and 39 deletions

View File

@ -18,6 +18,15 @@ The shortest possible PVA put() example.
*/
/**
@page examples_minimonitor Simple Client Monitor Example
The shortest possible PVA monitor() example.
@include minimonitor.cpp
*/
/**
@page examples_getme Client Get Example
This example demonstrates a client which issues a Get operation on startup,

View File

@ -13,10 +13,11 @@
@section main_examples API usage Examples
- Simplest (shortest) possible
- Simple synchronous (blocking) examples
- @ref examples_miniget
- @ref examples_miniput
- More complete
- @ref examples_minimonitor
- More complete callback based examples
- @ref examples_getme
- @ref examples_putme
- @ref examples_monitorme