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