add more calbacks; documentation changes

This commit is contained in:
mrkraimer
2017-08-08 06:23:35 -04:00
parent e1d50000d4
commit 97d9dc2034
5 changed files with 85 additions and 13 deletions
@@ -35,10 +35,29 @@
<h1>PvaClientPutRequester</h1>
<p>This is a virtual class that can be implemented by a client that uses <b>PvaClientPut</b>.
It has the methods:</p>
<pre>
virtual void channelPutConnect(
const Status&amp; status,
PvaClientPutPtr const &amp; clientPut) {}
virtual void getDone(
const Status&amp; status,
PvaClientPutPtr const &amp; clientPut) {}
virtual void putDone(
const Status&amp; status,
PvaClientPutPtr const &amp; clientPut) = 0;
</pre>
<p>The client must call</p>
<pre>
pvaClientPut->setRequester(shared_from_this());
</pre>
<p>
<b>Not Yet Written</b>
after creating an instance of PvaClientPut.
</p>
</body>
</html>