diff options
Diffstat (limited to 'src/mod_pubsub/node_flat.erl')
-rw-r--r-- | src/mod_pubsub/node_flat.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mod_pubsub/node_flat.erl b/src/mod_pubsub/node_flat.erl index 4a89abdc6..05c0f9c3b 100644 --- a/src/mod_pubsub/node_flat.erl +++ b/src/mod_pubsub/node_flat.erl @@ -50,6 +50,7 @@ get_node_subscriptions/1, get_subscriptions/2, set_subscriptions/4, + get_pending_nodes/2, get_states/1, get_state/2, set_state/1, @@ -148,6 +149,9 @@ get_subscriptions(NodeId, Owner) -> set_subscriptions(NodeId, Owner, Subscription, SubId) -> node_hometree:set_subscriptions(NodeId, Owner, Subscription, SubId). +get_pending_nodes(Host, Owner) -> + node_hometree:get_pending_nodes(Host, Owner). + get_states(NodeId) -> node_hometree:get_states(NodeId). |