Added compression support to WSF_FILE_SYSTEM_HANDLER.

Added a simple example using eiffel web compression.
This commit is contained in:
jvelilla
2016-11-29 18:17:44 -03:00
parent 5a9ccce558
commit 99bf552b89
11 changed files with 166443 additions and 14 deletions

View File

@@ -0,0 +1,26 @@
note
description : "simple application root class"
date : "$Date$"
revision : "$Revision$"
class
SERVICE_COMPRESSION
inherit
WSF_DEFAULT_SERVICE [SERVICE_COMPRESSION_EXECUTION]
redefine
initialize
end
create
make_and_launch
feature {NONE} -- Initialization
initialize
do
Precursor
import_service_options (create {WSF_SERVICE_LAUNCHER_OPTIONS_FROM_INI}.make_from_file ("service.ini"))
end
end