class EL_MODULE_WEB

(source code)

Client examples: HTTP_CONNECTION_TEST_SET

description

Shared access to routines of class EL_HTTP_CONNECTION

notes

Using a shared web connection did not work well when tested, but maybe this problem will have been resolved with the changes of Sep 2016 to fix the underlying C API.

note
	description: "Shared access to routines of class ${EL_HTTP_CONNECTION}"
	notes: "[
		Using a shared web connection did not work well when tested, but maybe this
		problem will have been resolved with the changes of Sep 2016 to fix the underlying C API.
	]"

	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: "2024-01-20 19:18:26 GMT (Saturday 20th January 2024)"
	revision: "10"

deferred class
	EL_MODULE_WEB

inherit
	EL_MODULE

feature {NONE} -- Constants

	Web: EL_HTTP_CONNECTION
		once
			create Result.make
		end

end