class IGroup(Interface): (source)
Known implementations: twisted.words.im.ircsupport.IRCGroup
, twisted.words.im.pbsupport.TwistedWordsGroup
A group which you may have a conversation with.
Groups generally have a loosely-defined set of members, who may leave and join at any time.
Method | __init__ |
Initialize me. |
Method | join |
Join this group. |
Method | leave |
Depart this group. |
Method | sendGroupMessage |
Send a message to this group. |
Method | setTopic |
Set this Groups topic on the server. |
Attribute | account |
The Account I am accessed through. |
Attribute | name |
My str name, as the server knows me. |
Parameters | |
name:str | My name, as the server knows me. |
account:Account | The account I am accessed through. |