Uses of Interface
net.jonathangiles.tools.teenyhttpd.model.Request
Packages that use Request
-
Uses of Request in net.jonathangiles.tools.teenyhttpd
Method parameters in net.jonathangiles.tools.teenyhttpd with type arguments of type Request -
Uses of Request in net.jonathangiles.tools.teenyhttpd.model
Methods in net.jonathangiles.tools.teenyhttpd.model that return RequestModifier and TypeMethodDescriptionstatic RequestRequest.create(Method method, String path, QueryParams queryParams) static RequestRequest.create(Method method, String path, QueryParams queryParams, List<Header> headers, Map<String, String> pathParamsMap, String body) static RequestRequest.create(Method method, String path, QueryParams queryParams, Map<String, Header> headers, Map<String, String> pathParamsMap) Methods in net.jonathangiles.tools.teenyhttpd.model with parameters of type RequestModifier and TypeMethodDescriptionstatic ResponseResponse.createFileResponse(Request request) voidCalled when the client connects to the SSE endpoint.voidServerSentEventHandler.onDisconnect(Request request) Called when the client disconnects from the SSE endpoint.Method parameters in net.jonathangiles.tools.teenyhttpd.model with type arguments of type RequestModifier and TypeMethodDescriptionvoidServerSentEventHandler.sendMessage(Function<Request, ServerSentEventMessage> messageGenerator) Sends a message to all clients, with the message being generated by the provided function.