Package com.cosylab.epics.caj.impl
Interface TransportClient
-
- All Known Implementing Classes:
CAJChannel,CAJNameClient
public interface TransportClientClient (user) of the transport.- Version:
- $id$
- Author:
- Matej Sekoranja
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtransportChanged()Notification of network change (server restarted).voidtransportClosed()Notification of forcefully closed transport.voidtransportResponsive(Transport transport)Notification of responsive transport (e.g.voidtransportUnresponsive()Notification of unresponsive transport (e.g.
-
-
-
Method Detail
-
transportUnresponsive
void transportUnresponsive()
Notification of unresponsive transport (e.g. no heartbeat detected) .
-
transportResponsive
void transportResponsive(Transport transport)
Notification of responsive transport (e.g. heartbeat detected again), called to discardtransportUnresponsivenotification.- Parameters:
transport- responsive transport.
-
transportChanged
void transportChanged()
Notification of network change (server restarted).
-
transportClosed
void transportClosed()
Notification of forcefully closed transport.
-
-