Package papyon :: Package event :: Module profile :: Class ProfileEventInterface

Class ProfileEventInterface

source code

        object --+    
                 |    
BaseEventInterface --+
                     |
                    ProfileEventInterface

Interface allowing the user to get notified about Profiles events

Instance Methods
 
__init__(self, client)
Initializer
source code
 
on_profile_presence_changed(self)
Called when the presence changes.
source code
 
on_profile_display_name_changed(self)
Called when the display name changes.
source code
 
on_profile_personal_message_changed(self)
Called when the personal message changes.
source code
 
on_profile_current_media_changed(self)
Called when the current media changes.
source code
 
on_profile_msn_object_changed(self)
Called when the MSNObject changes.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

__init__(self, client)
(Constructor)

source code 

Initializer

Parameters:
  • client (Client) - the client we want to be notified for its events
Overrides: object.__init__