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