class EL_LOGGED_CONSUMER_THREAD
Logged consumer thread
note
description: "Logged consumer thread"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2022-11-15 19:56:06 GMT (Tuesday 15th November 2022)"
revision: "8"
deferred class
EL_LOGGED_CONSUMER_THREAD [P]
inherit
EL_CONSUMER_THREAD [P]
undefine
on_start
redefine
set_waiting, on_continue
end
EL_LOGGED_IDENTIFIED_THREAD
undefine
make_default, stop
end
feature {NONE} -- Event handling
on_continue
-- Continue after waiting
do
log.put_line ("received " + ({P}).name + " object")
end
set_waiting
-- Continuous loop to do action that waits to be prompted
do
log.put_line ("waiting")
Precursor
end
end