Package org.epics.pvaccess.client
Interface ChannelGetRequester
-
- All Superinterfaces:
org.epics.pvdata.pv.Requester
public interface ChannelGetRequester extends org.epics.pvdata.pv.Requester
Requester for channelGet.- Author:
- mrk
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
channelGetConnect(org.epics.pvdata.pv.Status status, ChannelGet channelGet, org.epics.pvdata.pv.Structure structure)
The client and server have both completed the createChannelGet request.void
getDone(org.epics.pvdata.pv.Status status, ChannelGet channelGet, org.epics.pvdata.pv.PVStructure pvStructure, org.epics.pvdata.misc.BitSet bitSet)
The request is done.
-
-
-
Method Detail
-
channelGetConnect
void channelGetConnect(org.epics.pvdata.pv.Status status, ChannelGet channelGet, org.epics.pvdata.pv.Structure structure)
The client and server have both completed the createChannelGet request.- Parameters:
status
- Completion status.channelGet
- The channelGet interface ornull
if the request failed.structure
- The introspection interface of requested get structure ornull
if the request failed.
-
getDone
void getDone(org.epics.pvdata.pv.Status status, ChannelGet channelGet, org.epics.pvdata.pv.PVStructure pvStructure, org.epics.pvdata.misc.BitSet bitSet)
The request is done. This is always called with no locks held.- Parameters:
status
- Completion status.channelGet
- The channelGet interface.pvStructure
- The PVStructure that holds the data ornull
if the request failed.bitSet
- The bitSet for that shows what data has changed ornull
if the request failed.
-
-