pvAccessCPP
7.1.7
|
Requester for channelProcess. More...
#include <client/pv/pvAccess.h>
Public Types | |
typedef std::tr1::shared_ptr < ChannelProcessRequester > | shared_pointer |
typedef std::tr1::shared_ptr < const ChannelProcessRequester > | const_shared_pointer |
typedef std::tr1::weak_ptr < ChannelProcessRequester > | weak_pointer |
typedef std::tr1::weak_ptr < const ChannelProcessRequester > | const_weak_pointer |
typedef ChannelProcess | operation_type |
Public Member Functions | |
virtual void | channelProcessConnect (const epics::pvData::Status &status, ChannelProcess::shared_pointer const &channelProcess)=0 |
The client and server have both completed the createChannelProcess request. More... | |
virtual void | processDone (const epics::pvData::Status &status, ChannelProcess::shared_pointer const &channelProcess)=0 |
The process request is done. More... | |
virtual void | channelDisconnect (bool destroy) |
Notification when underlying Channel becomes DISCONNECTED or DESTORYED. More... | |
Static Public Attributes | |
static size_t | num_instances |
Requester for channelProcess.
Definition at line 569 of file pvAccess.h.
|
inlinevirtualinherited |
Notification when underlying Channel becomes DISCONNECTED or DESTORYED.
(re)connection is notified through a sub-class *Connect() method.
Any in-progress get()/put()/request()/start() is implicitly cancel()'d or stop()'d before this method is called.
Ownership of any PVStructures passed to completion callbacks (eg. ChannelGetRequester::getDone() ) is returned the operation
destroy | true for final disconnect. |
Definition at line 198 of file pvAccess.h.
|
pure virtual |
The client and server have both completed the createChannelProcess request.
status | Completion status. |
channelProcess | The channelProcess interface or nullptr if the client could not become the record processor. |
|
pure virtual |
The process request is done.
This is always called with no locks held.
status | Completion status. |
channelProcess | The channelProcess interface. |