blob: bc74ecf71f72e89ab45320fb517a2ad75876016c [file] [log] [blame]
require 'socket'
#
# Interface used to report listener events.
#
module ListenerHandler include
SourceHandler
#
# Reports that the listener has accepted a connection.
# @param t event originator
# @param s the socket of the connection.
# @throws Exception
#
def accepted( t, s )
raise "Subclass responsibility"
end
end