File: mautrix.client.mixins.rst

package info (click to toggle)
mautrix-python 0.20.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,812 kB
  • sloc: python: 19,103; makefile: 16
file content (29 lines) | stat: -rw-r--r-- 789 bytes parent folder | download
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
mautrix.client mixins
=====================

The :class:`Client <mautrix.client.Client>` class itself is very small, most of
the functionality on top of :class:`ClientAPI <mautrix.client.ClientAPI>` comes
from mixins that it includes. In some cases it might be useful to extend from a
mixin instead of the high-level client class (e.g. the appservice module's
:class:`IntentAPI <mautrix.appservice.api.IntentAPI>` extends
:class:`StoreUpdatingAPI <mautrix.client.StoreUpdatingAPI>`).

Syncer
------

.. autoclass:: mautrix.client.Syncer

DecryptionDispatcher
--------------------

.. autoclass:: mautrix.client.DecryptionDispatcher

EncryptingAPI
-------------

.. autoclass:: mautrix.client.EncryptingAPI

StoreUpdatingAPI
----------------

.. autoclass:: mautrix.client.StoreUpdatingAPI