XEP-0490: Message Displayed Synchronization

XEP-0490 on xmpp.org

class slixmpp.plugins.xep_0490.XEP_0490(xmpp, config=None)[source]

XEP-0490: Message Displayed Synchronization

catch_up(**kwargs)[source]

Get all displayed status.

Can take any keyword parameters from XEP-0060’s get_items().

Return type:

Future[Iq]

flag_chat(chat, stanza_id, **kwargs)[source]

Flag a chat as displayed.

Parameters:
  • chat (str | JID) – JID of the chat to set as displayed.

  • stanza_id (str) – stanza-id of which to set the display marker.

Return type:

Future[Iq]

Stanza elements

class slixmpp.plugins.xep_0490.stanza.Displayed(xml=None, parent=None)[source]

Displayed element.

<displayed xmlns='urn:xmpp:mds:displayed:0'>
  <stanza-id xmlns='urn:xmpp:sid:0'
             id='ca21deaf-812c-48f1-8f16-339a674f2864'
             by='example@conference.shakespeare.lit'/>
</displayed>
name: ClassVar[str] = 'displayed'

The XML tag name of the element, not including any namespace prefixes. For example, an ElementBase object for <message /> would use name = 'message'.

namespace: str = 'urn:xmpp:mds:displayed:0'

The XML namespace for the element. Given <foo xmlns="bar" />, then namespace = "bar" should be used. The default namespace is jabber:client since this is being used in an XMPP library.

plugin_attrib: ClassVar[str] = 'displayed'

For ElementBase subclasses which are intended to be used as plugins, the plugin_attrib value defines the plugin name. Plugins may be accessed by using the plugin_attrib value as the interface. An example using plugin_attrib = 'foo':

register_stanza_plugin(Message, FooPlugin)
msg = Message()
msg['foo']['an_interface_from_the_foo_plugin']
slixmpp.plugins.xep_0490.stanza.register_plugin()[source]