class EL_NONE_CONSUMER

(source code)

Description

Do nothing consumer

note
	description: "Do nothing consumer"

	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: "2"

class
	EL_NONE_CONSUMER [P]

inherit
	EL_CONSUMER [P]
		rename
			set_product_queue as make
		end

create
	make

feature -- Basic operations

	launch
			-- do another action
		do
		end

	prompt
			-- do another action
		do
		end

	execute
			-- Continuous loop to do action that waits to be prompted
		do
		end

	consume_product
			--
		do
		end

end