コード例 #1
0
 def __init__(self, client):
     """Initializer
         @param client: the client we want to be notified for its events
         @type client: L{Client<papyon.Client>}"""
     BaseEventInterface.__init__(self, client)
コード例 #2
0
ファイル: mailbox.py プロジェクト: Alberto-Beralix/Beralix
 def __init__(self, client):
     BaseEventInterface.__init__(self, client)
コード例 #3
0
ファイル: conversation.py プロジェクト: fernandomt08/emesene
 def __init__(self, conversation):
     """Initializer
         @param conversation: the conversation we want to be notified for its events
         @type conversation: L{Conversation<papyon.conversation.ConversationInterface>}"""
     BaseEventInterface.__init__(self, conversation)
コード例 #4
0
ファイル: session.py プロジェクト: Alberto-Beralix/Beralix
 def __init__(self, session):
     """Initializer
         @param session: the session we want to be notified for its events
         @type session: L{P2PSession<papyon.msnp2p.session.P2PSession>}"""
     BaseEventInterface.__init__(self, session)
コード例 #5
0
 def __init__(self, client):
     BaseEventInterface.__init__(self, client)
コード例 #6
0
ファイル: call.py プロジェクト: lppedd/papyon-1
 def __init__(self, call):
     """Initializer
         @param call: the call we want to be notified for its events
         @type call: L{MediaCall<papyon.media.MediaCall>}"""
     BaseEventInterface.__init__(self, call)
コード例 #7
0
ファイル: contact.py プロジェクト: Alberto-Beralix/Beralix
 def __init__(self, client):
     """Initializer
         @param client: the client we want to be notified for its events
         @type client: L{Client<papyon.Client>}"""
     BaseEventInterface.__init__(self, client)
コード例 #8
0
 def __init__(self, stream):
     """Initializer
         @param stream: the media stream we want to be notified for its events
         @type stream: L{MediaStream<papyon.media.MediaStream>}"""
     BaseEventInterface.__init__(self, stream)
     self._stream = weakref.proxy(stream)
コード例 #9
0
 def __init__(self, session):
     """Initializer
         @param session: the media session we want to be notified for its events
         @type session: L{MediaSession<papyon.media.MediaSession>}"""
     BaseEventInterface.__init__(self, session)
     self._session = weakref.proxy(session)
コード例 #10
0
ファイル: webcam.py プロジェクト: lppedd/papyon
 def __init__(self, session):
     """Initializer
         @param session: the session we want to be notified for its events
         @type session: L{WebcamSession<papyon.msnp2p.webcam.WebcamSession>}"""
     BaseEventInterface.__init__(self, client)
コード例 #11
0
ファイル: call.py プロジェクト: Alberto-Beralix/Beralix
 def __init__(self, call):
     """Initializer
         @param call: the call we want to be notified for its events
         @type call: L{MediaCall<papyon.media.MediaCall>}"""
     BaseEventInterface.__init__(self, call)
コード例 #12
0
ファイル: conversation.py プロジェクト: DarKprince/emesene2
 def __init__(self, conversation):
     """Initializer
         @param conversation: the conversation we want to be notified for its events
         @type conversation: L{Conversation<papyon.conversation.ConversationInterface>}"""
     BaseEventInterface.__init__(self, conversation)