Method: IRCConnection.main

Defined in:
lib/IRCConnection.rb

.mainObject

This loop monitors all IO_Sockets IRCConnection controls (including the IRC socket) and yields events to the IO_Sockets event handler.



77
78
79
80
81
82
83
# File 'lib/IRCConnection.rb', line 77

def IRCConnection.main
  while(@@quit == 0)
    do_one_loop { |event|
      yield event
    }
  end
end