Simplified interface of "router" library classes

This commit is contained in:
Jocelyn Fiat
2011-09-14 16:48:27 +02:00
parent 8b6e9273fa
commit 22fd7490fe
11 changed files with 219 additions and 198 deletions

View File

@@ -18,7 +18,6 @@ feature -- Initialization
make (act: like action)
do
action := act
initialize
end
feature -- Access
@@ -27,7 +26,7 @@ feature -- Access
feature -- Execution
execute_application (ctx: C; req: WGI_REQUEST; res: WGI_RESPONSE_BUFFER)
execute (ctx: C; req: WGI_REQUEST; res: WGI_RESPONSE_BUFFER)
do
action.call ([ctx, req, res])
end