Experimentation of WSF_EXECUTOR.execute (req, res)

This commit is contained in:
2015-06-18 14:49:29 +02:00
parent 903f925a79
commit 91fbb3866f
7 changed files with 467 additions and 63 deletions

View File

@@ -1,7 +1,7 @@
note
description: "Request execution based on attributes `request' and `response'. "
date: "$Date$"
revision: "$Revision$"
date: "$Date: 2015-06-16 15:03:22 +0200 (mar., 16 juin 2015) $"
revision: "$Revision: 97475 $"
deferred class
WSF_EXECUTION
@@ -11,7 +11,7 @@ inherit
rename
request as wgi_request,
response as wgi_response,
make_from_execution as make_from_wgi_execution
make_from_execution as make_from_wgi_execution
redefine
make,
execute,

View File

@@ -0,0 +1,31 @@
note
description: "Request execution with request and response passed as argument."
date: "$Date$"
revision: "$Revision$"
deferred class
WSF_EXECUTOR
feature {NONE} -- Initialization
initialize
do
end
feature -- Execution
execute (req: WSF_REQUEST; res: WSF_RESPONSE)
deferred
end
note
copyright: "2011-2015, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Colin Adams, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[
Eiffel Software
5949 Hollister Ave., Goleta, CA 93117 USA
Telephone 805-685-1006, Fax 805-685-6869
Website http://www.eiffel.com
Customer support http://support.eiffel.com
]"
end