Layout: got rid of onces per thread function.

Renamed `launch_cms' as `initialize_cms' which reflects better the implementation.
Minor cosmetic or warning changes.
This commit is contained in:
2014-10-08 14:24:49 +02:00
parent b004ac8ae0
commit c94e5391e9
10 changed files with 139 additions and 48 deletions

View File

@@ -43,7 +43,7 @@ feature {NONE} -- Initialization
do
Precursor
service_options := create {WSF_SERVICE_LAUNCHER_OPTIONS_FROM_INI}.make_from_file ("roc.ini")
launch_cms (cms_setup)
initialize_cms (cms_setup)
end
feature -- Service
@@ -115,11 +115,11 @@ feature -- CMS Initialization
setup_storage (Result)
end
launch_cms (a_setup: CMS_SETUP)
initialize_cms (a_setup: CMS_SETUP)
local
cms: CMS_SERVICE
do
log.write_debug (generator + ".launch_cms")
log.write_debug (generator + ".initialize_cms")
create cms.make (a_setup)
cms_service := cms
end