class ChatAvatar(pb.Referenceable): (source)
Constructor: ChatAvatar(avatar)
Implements interfaces: twisted.words.iwords.IChatClient
Undocumented
Method | __init__ |
Undocumented |
Method | group |
Callback notifying this user that the metadata for the given group has changed. |
Method | jelly |
(internal) |
Method | name |
Undocumented |
Method | receive |
Callback notifying this user of the given message sent by the given user. |
Method | remote |
Undocumented |
Method | user |
Callback notifying this user that the given user has joined the given group. |
Method | user |
Callback notifying this user that the given user has left the given group for the given reason. |
Instance Variable | avatar |
Undocumented |
Property | name |
A short string, unique among users. This will be set by the IChatService at login time. |
Inherited from Referenceable
:
Method | remote |
A remote message has been received. Dispatch it appropriately. |
Class Variable | perspective |
I am an object sent remotely as a direct reference. |
Inherited from Serializable
(via Referenceable
):
Method | process |
Return an ID which uniquely represents this object for this process. |
Inherited from Jellyable
(via Referenceable
, Serializable
):
Method | get |
Undocumented |
Callback notifying this user that the metadata for the given group has changed.
Parameters | |
group:IGroup | Undocumented |
meta:dict | Undocumented |
Returns | |
twisted.internet.defer.Deferred | Undocumented |
twisted.spread.pb.Referenceable.jellyFor
(internal)
Return a tuple which will be used as the s-expression to serialize this to a peer.
Callback notifying this user of the given message sent by the given user.
This will be invoked whenever another user sends a message to a group this user is participating in, or whenever another user sends a message directly to this user. In the former case, recipient will be the group to which the message was sent; in the latter, it will be the same object as the user who is receiving the message.
Parameters | |
sender:IUser | Undocumented |
recipient:IUser or IGroup | Undocumented |
message:dict | Undocumented |
Returns | |
twisted.internet.defer.Deferred | A Deferred which fires when the message has been delivered, or which fails in some way. If the Deferred fails and the message was directed at a group, this user will be removed from that group. |
Callback notifying this user that the given user has joined the given group.
Parameters | |
group:IGroup | Undocumented |
user:IUser | Undocumented |
Returns | |
twisted.internet.defer.Deferred | Undocumented |
Callback notifying this user that the given user has left the given group for the given reason.
Parameters | |
group:IGroup | Undocumented |
user:IUser | Undocumented |
reason:unicode | Undocumented |
Returns | |
twisted.internet.defer.Deferred | Undocumented |