Package org.opendaylight.ovsdb.lib
Interface OvsdbConnectionListener
- All Known Implementing Classes:
HwvtepConnectionManager
,OvsdbConnectionManager
public interface OvsdbConnectionListener
Applications interested in Passive ovsdb connection events should implement this interface.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
connected
(@NonNull OvsdbClient client) Event thrown to the connection listener when a new Passive connection is established.void
disconnected
(OvsdbClient client) Event thrown to the connection listener when an existing connection is terminated.
-
Method Details
-
connected
Event thrown to the connection listener when a new Passive connection is established.- Parameters:
client
- OvsdbClient that represents the connection.
-
disconnected
Event thrown to the connection listener when an existing connection is terminated.- Parameters:
client
- OvsdbClient that represents the connection.
-