package net
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- case class ReqHdl extends () => Resp with Product with Serializable
Class representing an HTTP request, methods in the object
ReqHdl
returns instance of this class to be able to do other useful things with a request before actually "executing" it. - final case class Resp(resp: String, page: Int = 0, errMsg: Option[String] = None) extends Product with Serializable
Cases class modelizing the server's response to request.
Cases class modelizing the server's response to request. Allows doing several useful operations with it (i.e. ask for next page). NB: Can contain an error !
- resp
raw Json response from server