public interface EventSourceService
extends org.opendaylight.yangtools.yang.binding.RpcService
rpc dis-join-topic {
input {
leaf node {
type instance-identifier;
}
leaf topic-id {
type topic-id;
}
}
}
rpc join-topic {
input {
leaf node {
type instance-identifier;
}
leaf topic-id {
type topic-id;
}
leaf notification-pattern {
type notification-pattern;
}
}
output {
leaf status {
type join-topic-status;
}
}
}
| Modifier and Type | Method and Description |
|---|---|
Future<org.opendaylight.yangtools.yang.common.RpcResult<Void>> |
disJoinTopic(DisJoinTopicInput input) |
Future<org.opendaylight.yangtools.yang.common.RpcResult<JoinTopicOutput>> |
joinTopic(JoinTopicInput input) |
Future<org.opendaylight.yangtools.yang.common.RpcResult<Void>> disJoinTopic(DisJoinTopicInput input)
Future<org.opendaylight.yangtools.yang.common.RpcResult<JoinTopicOutput>> joinTopic(JoinTopicInput input)
Copyright © 2016 OpenDaylight. All rights reserved.