unregisterSubscriber method

Future<void> unregisterSubscriber (
  1. String topic
)
inherited

Unsubscribes the node by nodeName from the specified topic.

topic is the fully qualified name of the topic xmlRpcUri is the XML-RPC URI of the caller node

Return of zero means that the caller was not registered as a subscriber. The call still succeeds as the intended final state is reached.

Implementation

Future<void> unregisterSubscriber(
  String topic,
) async {
  await _call('unregisterSubscriber', [nodeName, topic, xmlRpcUri]);
}