class EL_ACTION_ARGUMENTS_CONSUMER_MAIN_THREAD

(source code)

Description

Consumer of arguments to an action or sequence of actions using the main GUI thread

note
	description: "[
		Consumer of arguments to an action or sequence of actions using the main GUI 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: "4"

class
	EL_ACTION_ARGUMENTS_CONSUMER_MAIN_THREAD [OPEN_ARGS -> TUPLE create default_create end]

inherit
	EL_ACTION_ARGUMENTS_CONSUMER [OPEN_ARGS]
		rename
			make_default as make
		undefine
			stop
		end

	EL_CONSUMER_MAIN_THREAD [OPEN_ARGS]
		rename
			make_default as make,
			consume_product as call_actions,
			product as arguments
		undefine
			make
		end

create
	make

end