Class como.irc.ServerIRC
All Packages Class Hierarchy This Package Previous Next Index
Class como.irc.ServerIRC
java.lang.Object
|
+----java.lang.Thread
|
+----como.irc.ServerIRC
- public class ServerIRC
- extends Thread
-
handleMsg(Msg)
-
-
isUserOnChannel(User, IrcChan)
- Let's see if a user is on a channel.
-
loggedout(ComObjIRC, IrcChan)
- Called by a ComObjIRC that quitted (user closed it).
-
logout()
-
-
run()
-
-
sendInvitation(IrcChan, User)
- Send an invitation for a specific channel to the user 'who'.
run
public void run()
- Overrides:
- run in class Thread
handleMsg
public boolean handleMsg(Msg msg)
sendInvitation
public void sendInvitation(IrcChan chan,
User who)
- Send an invitation for a specific channel to the user 'who'.
logout
public void logout()
loggedout
public void loggedout(ComObjIRC c,
IrcChan chan)
- Called by a ComObjIRC that quitted (user closed it).
It just tells this the ServerIRC (me).
isUserOnChannel
public synchronized boolean isUserOnChannel(User user,
IrcChan channel)
- Let's see if a user is on a channel.
All Packages Class Hierarchy This Package Previous Next Index