class EL_AUDIO_PLAYER_DO_NOTHING_EVENT_LISTENER

(source code)

Description

Audio player do nothing event listener

note
	description: "Audio player do nothing event listener"

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

class
	EL_AUDIO_PLAYER_DO_NOTHING_EVENT_LISTENER

inherit
	EL_AUDIO_PLAYER_EVENT_LISTENER

create
	default_create

feature -- Event handlers

	on_buffer_played (progress_proportion: REAL)
			--
		do
		end

	on_finished
			--
		do
		end

	on_buffering_start
			--
		do
		end

	on_buffering_step  (progress_proportion: REAL)
			--
		do
		end

	on_buffering_end
			--
		do
		end

end