Esempio n. 1
0
 def _send_message(self, content_type, body, headers={},
         ack=msnp.MessageAcknowledgement.HALF):
     SwitchboardClient._send_message(self, content_type, body, headers, ack)
Esempio 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)
Esempio n. 3
0
 def leave(self):
     """Leave the conversation."""
     SwitchboardClient._leave(self)
Esempio n. 4
0
 def __init__(self, client, contacts):
     SwitchboardClient.__init__(self, client, contacts, priority=0)
     AbstractConversation.__init__(self, client)
Esempio n. 5
0
 def _send_message(self,
                   content_type,
                   body,
                   headers={},
                   ack=msnp.MessageAcknowledgement.HALF):
     SwitchboardClient._send_message(self, content_type, body, headers, ack)
Esempio n. 6
0
 def leave(self):
     """Leave the conversation."""
     SwitchboardClient._leave(self)
Esempio 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)
Esempio n. 8
0
 def __init__(self, client, contacts):
     SwitchboardClient.__init__(self, client, contacts, priority=0)
     AbstractConversation.__init__(self, client)