pvAccessCPP 7.1.8
Loading...
Searching...
No Matches
pvac::Monitor Struct Reference

Handle for monitor subscription. More...

#include <client/pva/client.h>

Inheritance diagram for pvac::Monitor:
Collaboration diagram for pvac::Monitor:

Public Member Functions

 Monitor (const std::tr1::shared_ptr< Impl > &)
 
std::string name () const
 Channel name.
 
void cancel ()
 Immediate cancellation.
 
bool poll ()
 updates root, changed, overrun
 
bool complete () const
 true if all events received.
 
bool valid () const
 
 operator bool_type () const
 
void reset ()
 

Public Attributes

epics::pvData::PVStructure::const_shared_pointer root
 Monitor update data.
 
epics::pvData::BitSet changed
 
epics::pvData::BitSet overrun
 

Friends

struct MonitorSync
 

Detailed Description

Handle for monitor subscription.

Definition at line 117 of file client.h.

Constructor & Destructor Documentation

◆ Monitor()

pvac::Monitor::Monitor ( )
inline

Definition at line 120 of file client.h.

Member Function Documentation

◆ cancel()

void pvac::Monitor::cancel ( )

Immediate cancellation.

Does not wait for remote confirmation.

Since
Up to 7.0.0 also cleared root, changed, and overrun. After 7.0.0, these data members are left unchanged.

◆ complete()

bool pvac::Monitor::complete ( ) const

true if all events received.

Check after poll()==false

◆ operator bool_type()

pvac::Monitor::operator bool_type ( ) const
inline

Definition at line 172 of file client.h.

◆ poll()

bool pvac::Monitor::poll ( )

updates root, changed, overrun

Returns
true if a new update was extracted from the queue.
Note
This method does not block.
MonitorEvent::Data will not be repeated until poll()==false.
Postcondition
root!=NULL (after version 6.0.0)
root!=NULL iff poll()==true (In version 6.0.0)

◆ reset()

void pvac::Monitor::reset ( )
inline

Definition at line 175 of file client.h.

◆ valid()

bool pvac::Monitor::valid ( ) const
inline

Definition at line 164 of file client.h.

Friends And Related Symbol Documentation

◆ MonitorSync

friend struct MonitorSync
friend

Definition at line 180 of file client.h.

Member Data Documentation

◆ changed

epics::pvData::BitSet pvac::Monitor::changed

Definition at line 161 of file client.h.

◆ overrun

epics::pvData::BitSet pvac::Monitor::overrun

Definition at line 162 of file client.h.

◆ root

epics::pvData::PVStructure::const_shared_pointer pvac::Monitor::root

Monitor update data.

After version 6.0.0

Initially NULL, becomes !NULL the first time poll()==true. The PVStructure pointed to be root will presist until Monitor reconnect w/ type change. This can be detected by comparing root.get(). references to root may be cached subject to this test.

In version 6.0.0

NULL except after poll()==true. poll()==false sets root=NULL. references to root should not be stored between calls to poll().

Definition at line 160 of file client.h.


The documentation for this struct was generated from the following file: