Package jerklib.events

Package contains all the event interfaces.

See:
          Description

Interface Summary
AwayEvent This is an event that is fired under three conditions: Sending a message to a user who is marked as away. User of lib marks self as away. User of lib returns from away. You can determine under which circumstance the event was fired by looking at the AwayEvent.EventType.
ChannelListEvent The event fired when a line from a channel listing is parsed
ConnectionCompleteEvent Event made when connected to the server This event contains the real server name.
ConnectionLostEvent The event fired when a connection to a server is lost (disconnected).
CtcpEvent Event fired for generic CTCP events
ErrorEvent Base interface for error events
InviteEvent Event fired when an Invite message is recieved from server
IRCEvent The base interface for all JerkLib events.
JoinCompleteEvent Event that occurs when a join to a channel is complete
JoinEvent JoinIRCEvent is the event that will be dispatched when someone joins a channel
KickEvent Event fired when someone is kicked from a channel
MessageEvent Base interface for all PRIVMSGs
MotdEvent MOTDEvent is the event dispatched for every MOTD line from the server
NickChangeEvent NickChangeIRCEvent is created when someone in a channel changes their nick
NickInUseEvent NickInUseEvent is fired when jerklib is trying to use a nick that is in use on a given server.
NickListEvent Event fired when nick list event comes from server
NoticeEvent NoticeIRCEvent - the event for notices from the server
NumericErrorEvent Event fired for most all numeric error replies
PartEvent PartIRCEvent is made when someone parts a channel
QuitEvent This is the event fired when someone quits
ServerInformationEvent Event fired when IRC numeric 005 is received - AKA Server Information
ServerVersionEvent Event fired for server version information
TopicEvent Event fired when topic is received
UnresolvedHostnameErrorEvent Error generated when a DNS lookup fails during connection.
WhoEvent This is fired when the lib gets a reply from a WHO request.
WhoisEvent Fired when whois event recieved
WhowasEvent Event fired when whowas data received
 

Enum Summary
AwayEvent.EventType An enum to determine the type of event that was fired.
ErrorEvent.ErrorType  
IRCEvent.Type Type enum is used to determine type.
 

Package jerklib.events Description

Package contains all the event interfaces.

All event interfaces extend IRCEvent.

See Also:
IRCEvent, IRCEvent.Type