Interface BgpMessageListener

  • All Superinterfaces:
    EventListener, org.opendaylight.yangtools.yang.binding.NotificationListener

    public interface BgpMessageListener
    extends org.opendaylight.yangtools.yang.binding.NotificationListener
    Interface for implementing the following YANG notifications defined in module bgp-message
     notification open {
       uses open-message;
     }
     notification update {
       uses update-message;
     }
     notification keepalive {
     }
     notification notify {
       uses notify-message;
     }
     
    • Method Detail

      • onOpen

        void onOpen​(Open notification)
      • onUpdate

        void onUpdate​(Update notification)
      • onKeepalive

        void onKeepalive​(Keepalive notification)
        Keepalive Message
      • onNotify

        void onNotify​(Notify notification)