Uses of Class
com.kttdevelopment.simplehttpserver.HttpSession
-
Packages that use HttpSession Package Description com.kttdevelopment.simplehttpserver com.kttdevelopment.simplehttpserver.handler -
-
Uses of HttpSession in com.kttdevelopment.simplehttpserver
Methods in com.kttdevelopment.simplehttpserver that return HttpSession Modifier and Type Method Description abstract HttpSessionSimpleHttpServer. getHttpSession(SimpleHttpExchange exchange)Returns the session associated with an exchange or null it no session handler exists.abstract HttpSessionSimpleHttpServer. getHttpSession(HttpExchange exchange)Returns the session associated with an exchange or null if no session handler exists.HttpSessionHttpSessionHandler. getSession(HttpExchange exchange)Returns the session of the client or assigns one if it does not yet have one Session will only be saved client side if the exchange headers are sent usingHttpExchange.sendResponseHeaders(int, long). -
Uses of HttpSession in com.kttdevelopment.simplehttpserver.handler
Methods in com.kttdevelopment.simplehttpserver.handler with parameters of type HttpSession Modifier and Type Method Description booleanServerSessionThrottler. canIgnoreConnectionLimit(HttpSession session, HttpExchange exchange)Returns if a session is exempt from the server connection limit only.intServerSessionThrottler. getMaxConnections(HttpSession session, HttpExchange exchange)Returns the maximum number of connections for a session.intSessionThrottler. getMaxConnections(HttpSession session, HttpExchange exchange)Returns the maximum number of connections for a session.
-