Package org.epics.pvaccess.client
Interface ChannelRequester
-
- All Superinterfaces:
org.epics.pvdata.pv.Requester
- All Known Implementing Classes:
RPCClientImpl
public interface ChannelRequester extends org.epics.pvdata.pv.Requester
Listener for connect state changes.- Author:
- mrk
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
channelCreated(org.epics.pvdata.pv.Status status, Channel channel)
A channel has been created.void
channelStateChange(Channel channel, Channel.ConnectionState connectionState)
A channel connection state change has occurred.
-
-
-
Method Detail
-
channelCreated
void channelCreated(org.epics.pvdata.pv.Status status, Channel channel)
A channel has been created. This may be called multiple times if there are multiple providers.- Parameters:
status
- Completion status.channel
- The channel ornull
if the request failed.
-
channelStateChange
void channelStateChange(Channel channel, Channel.ConnectionState connectionState)
A channel connection state change has occurred.- Parameters:
channel
- The channel.connectionState
- The new connection state.
-
-