示例#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
文件: 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
 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
 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)