Package net.officefloor.server
Interface RequestServicerFactory<R>
-
- All Known Implementing Classes:
AbstractHttpServicerFactory
,SslSocketServicerFactory
public interface RequestServicerFactory<R>
Factory to create theRequestServicer
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RequestServicer<R>
createRequestServicer(SocketServicer<R> socketServicer)
Creates theRequestServicer
for theSocketServicer
.
-
-
-
Method Detail
-
createRequestServicer
RequestServicer<R> createRequestServicer(SocketServicer<R> socketServicer)
Creates theRequestServicer
for theSocketServicer
.- Parameters:
socketServicer
-SocketServicer
.- Returns:
RequestServicer
.
-
-