Interface EventSourceService

  • All Superinterfaces:
    RpcService
    All Known Subinterfaces:
    EventSource

    public interface EventSourceService
    extends RpcService
    Interface for implementing the following YANG RPCs defined in module event-source
     rpc join-topic {
       input input {
         leaf node {
           ext:context-reference inv:node-context;
           type instance-identifier;
         }
         leaf topic-id {
           type aggr:topic-id;
         }
         leaf notification-pattern {
           type aggr:notification-pattern;
         }
       }
       output output {
         leaf status {
           type join-topic-status;
         }
       }
     }
     rpc dis-join-topic {
       input input {
         leaf node {
           ext:context-reference inv:node-context;
           type instance-identifier;
         }
         leaf topic-id {
           type aggr:topic-id;
         }
       }
     }