Package net.officefloor.servlet
Interface ServletServicer
-
- All Known Implementing Classes:
TomcatServletManager
public interface ServletServicer
ServicesServerHttpConnection
viaServlet
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
service(ServerHttpConnection connection, java.util.concurrent.Executor executor, AsynchronousFlow asynchronousFlow, AsynchronousFlowCompletion asynchronousFlowCompletion, java.util.Map<java.lang.String,? extends java.lang.Object> attributes)
Services theServerHttpConnection
.
-
-
-
Method Detail
-
service
void service(ServerHttpConnection connection, java.util.concurrent.Executor executor, AsynchronousFlow asynchronousFlow, AsynchronousFlowCompletion asynchronousFlowCompletion, java.util.Map<java.lang.String,? extends java.lang.Object> attributes) throws java.lang.Exception
Services theServerHttpConnection
.- Parameters:
connection
-ServerHttpConnection
.executor
-Executor
.asynchronousFlow
-AsynchronousFlow
to allow forAsyncContext
.asynchronousFlowCompletion
-AsynchronousFlowCompletion
for handling completion of servicing.attributes
- Optional attributes to load to theHttpServletRequest
. May benull
.- Throws:
java.lang.Exception
- If fails to service.
-
-