summaryrefslogtreecommitdiff
path: root/examples/hlapi/asyncio/agent/ntforg/multiple-notifications-at-once.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hlapi/asyncio/agent/ntforg/multiple-notifications-at-once.py')
-rw-r--r--examples/hlapi/asyncio/agent/ntforg/multiple-notifications-at-once.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/hlapi/asyncio/agent/ntforg/multiple-notifications-at-once.py b/examples/hlapi/asyncio/agent/ntforg/multiple-notifications-at-once.py
index 027d3ac6..5345e98b 100644
--- a/examples/hlapi/asyncio/agent/ntforg/multiple-notifications-at-once.py
+++ b/examples/hlapi/asyncio/agent/ntforg/multiple-notifications-at-once.py
@@ -56,7 +56,12 @@ def sendone(snmpEngine, hostname, notifyType):
snmpEngine = SnmpEngine()
loop = asyncio.get_event_loop()
+
+# send notifications concurrently
loop.run_until_complete(
asyncio.wait([sendone(snmpEngine, 'demo.snmplabs.com', 'trap'),
sendone(snmpEngine, 'demo.snmplabs.com', 'inform')])
)
+
+# this will cancel internal timer
+loop.run_until_complete(unconfigureNtfOrg(snmpEngine)) \ No newline at end of file