Пример #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
 def __init__(self, client):
     BaseEventInterface.__init__(self, client)
Пример #3
0
 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
 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
 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
 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
 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
 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
 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)