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.

  1. unRequesterT :: RequesterT t (request :: Type -> Type) (response :: Type -> Type) (m :: Type -> Type) a -> StateT (RequesterState t request) (ReaderT (EventSelectorInt t (Any :: Type)) m) a

    reflex Reflex.Requester.Base.Internal

    No documentation available.

  2. withRequesterT :: forall t (m :: Type -> Type) req req' rsp' rsp a . (Reflex t, MonadFix m) => (forall x . () => req x -> req' x) -> (forall x . () => rsp' x -> rsp x) -> RequesterT t req rsp m a -> RequesterT t req' rsp' m a

    reflex Reflex.Requester.Base.Internal

    Map a function over the request and response of a RequesterT

  3. class (Reflex t, Monad m) => Requester t (m :: Type -> Type) | m -> t

    reflex 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.

  4. 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.

  5. requestingIdentity :: (Requester t m, Response m ~ Identity) => Event t (Request m a) -> m (Event t a)

    reflex Reflex.Requester.Class

    Emit a request whenever the given Event fires, and unwrap the responses before returning them. Response m must be Identity.

  6. 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.

  7. withRequesting :: (Requester t m, MonadFix m) => (Event t (Response m a) -> m (Event t (Request m a), r)) -> m r

    reflex Reflex.Requester.Class

    No documentation available.

  8. module Text.Regex.PCRE.Sequence

    This exports instances of the high level API and the medium level API of compile,execute, and regexec.

  9. type NewRequestHook hookState = PerSessionData -> IO hookState

    snap-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.

  10. getOnNewRequest :: ServerConfig hookState -> NewRequestHook hookState

    snap-server Snap.Http.Server.Types

    No documentation available.

Page 361 of many | Previous | Next