Exemplo n.º 1
0
 def _send_message(self, content_type, body, headers={},
         ack=msnp.MessageAcknowledgement.HALF):
     SwitchboardClient._send_message(self, content_type, body, headers, ack)
Exemplo n.º 2
0
    def invite_user(self, contact):
        """Request a contact to join in the conversation.

            @param contact: the contact to invite.
            @type contact: L{profile.Contact}"""
        SwitchboardClient._invite_user(self, contact)
Exemplo n.º 3
0
 def leave(self):
     """Leave the conversation."""
     SwitchboardClient._leave(self)
Exemplo n.º 4
0
 def __init__(self, client, contacts):
     SwitchboardClient.__init__(self, client, contacts, priority=0)
     AbstractConversation.__init__(self, client)
Exemplo n.º 5
0
 def _send_message(self,
                   content_type,
                   body,
                   headers={},
                   ack=msnp.MessageAcknowledgement.HALF):
     SwitchboardClient._send_message(self, content_type, body, headers, ack)
Exemplo n.º 6
0
 def leave(self):
     """Leave the conversation."""
     SwitchboardClient._leave(self)
Exemplo n.º 7
0
    def invite_user(self, contact):
        """Request a contact to join in the conversation.

            @param contact: the contact to invite.
            @type contact: L{profile.Contact}"""
        SwitchboardClient._invite_user(self, contact)
Exemplo n.º 8
0
 def __init__(self, client, contacts):
     SwitchboardClient.__init__(self, client, contacts, priority=0)
     AbstractConversation.__init__(self, client)