summaryrefslogtreecommitdiff
path: root/docs/source/examples/v3arch/trollius/contents.rst
blob: b223e64c2b513fd9f4c8e7204954b21acc904a84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

SNMP with Trollius
==================

`Trollius <http://trollius.readthedocs.org/>`_ framework offers 
infrastructure that allows you writing single-threaded, concurrent code
using Python coroutines.

Trollius is a backport of `asyncio <https://docs.python.org/3/library/asyncio.html>`_ to Python versions older than 3.3. Trollius supports nearly the same 
API as asyncio. Full support of both asyncio and trollius modules is
built into pysnmp.

All SNMP-related functionality of Native PySNMP API to Standard SNMP 
Applications (`RFC3413 <https://tools.ietf.org/html/rfc3413>`_)
remains available to asyncio-backed applications.

Command Generator Applications
------------------------------

.. toctree::

   /examples/v3arch/trollius/manager/cmdgen/fetching-values
   /examples/v3arch/trollius/manager/cmdgen/modifying-variables
   /examples/v3arch/trollius/manager/cmdgen/walking-operations
   /examples/v3arch/trollius/manager/cmdgen/transport-tweaks

Notification Originator Applications
------------------------------------

.. toctree::

   /examples/v3arch/trollius/agent/ntforg/common-notifications

For more details on PySNMP programming model and interfaces, please 
refer to the documentation