Package org.epics.pvaccess.client
Interface ChannelProcessRequester
-
- All Superinterfaces:
org.epics.pvdata.pv.Requester
public interface ChannelProcessRequester extends org.epics.pvdata.pv.Requester
Requester for channelProcess.- Author:
- mrk
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
channelProcessConnect(org.epics.pvdata.pv.Status status, ChannelProcess channelProcess)
The client and server have both completed the createChannelProcess request.void
processDone(org.epics.pvdata.pv.Status status, ChannelProcess channelProcess)
The process request is done.
-
-
-
Method Detail
-
channelProcessConnect
void channelProcessConnect(org.epics.pvdata.pv.Status status, ChannelProcess channelProcess)
The client and server have both completed the createChannelProcess request.- Parameters:
status
- Completion status.channelProcess
- The channelProcess interface ornull
if the client could not become the record processor.
-
processDone
void processDone(org.epics.pvdata.pv.Status status, ChannelProcess channelProcess)
The process request is done. This is always called with no locks held.- Parameters:
status
- Completion status.channelProcess
- The channelProcess interface.
-
-