Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
reflex Reflex.Requester.Base.Internal No documentation available.
-
reflex Reflex.Requester.Base.Internal Map a function over the request and response of a RequesterT
class (Reflex t, Monad m) =>
Requester t (m :: Type -> Type) | m -> treflex Reflex.Requester.Class A Requester action can trigger requests of type Request m a based on Events, and receive responses of type Response m a in return. Note that the a type can vary within the Requester action, but will be linked for a given request. For example, if Request m is IO and Response m is Identity, then requestingIdentity has the same type as performEvent.
requesting :: Requester t m => Event t (Request m a) -> m (Event t (Response m a))reflex Reflex.Requester.Class Emit a request whenever the given Event fires, and return responses in the resulting Event. Semantically, the response event occurs at a later time than the request event.
-
reflex Reflex.Requester.Class Emit a request whenever the given Event fires, and unwrap the responses before returning them. Response m must be Identity.
requesting_ :: Requester t m => Event t (Request m a) -> m ()reflex Reflex.Requester.Class Emit a request whenever the given Event fires, and ignore all responses.
-
reflex Reflex.Requester.Class No documentation available.
module Text.Regex.PCRE.
Sequence This exports instances of the high level API and the medium level API of compile,execute, and regexec.
type
NewRequestHook hookState = PerSessionData -> IO hookStatesnap-server Snap.Http.Server.Types The NewRequestHook is called once processing for an HTTP request begins, i.e. after the connection has been accepted and we know that there's data available to read from the socket. The IORef passed to the hook initially contains a bottom value that will throw an exception if evaluated.
getOnNewRequest :: ServerConfig hookState -> NewRequestHook hookStatesnap-server Snap.Http.Server.Types No documentation available.