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 Type
    Method
    Description
    void
    connected(@NonNull OvsdbClient client)
    Event thrown to the connection listener when a new Passive connection is established.
    void
    Event thrown to the connection listener when an existing connection is terminated.
  • Method Details

    • connected

      void connected(@NonNull OvsdbClient client)
      Event thrown to the connection listener when a new Passive connection is established.
      Parameters:
      client - OvsdbClient that represents the connection.
    • disconnected

      void disconnected(OvsdbClient client)
      Event thrown to the connection listener when an existing connection is terminated.
      Parameters:
      client - OvsdbClient that represents the connection.