remote-monad-0.1.0.0: An parametrizable Remote Monad, and parametrizable Applicative Functor

Copyright(C) 2016 The University of Kansas
LicenseBSD-style (see the file LICENSE)
MaintainerAndy Gill
StabilityAlpha
PortabilityGHC
Safe HaskellSafe
LanguageHaskell2010

Control.Remote.Applicative

Contents

Description

 

Synopsis

The remote applicative

The primitive lift functions

command :: c -> RemoteApplicative c p () Source #

promote a command into the applicative

procedure :: p a -> RemoteApplicative c p a Source #

promote a command into the applicative

The run functions

runApplicative :: (RunApplicative f, Monad m) => (f c p ~> m) -> RemoteApplicative c p ~> m Source #

This overloaded function chooses the best bundling strategy based on the type of the handler your provide.

runWeakApplicative :: forall m c p. Applicative m => (WeakPacket c p ~> m) -> RemoteApplicative c p ~> m Source #

The weak remote applicative, that sends commands and procedures piecemeal.

runStrongApplicative :: forall m c p. Monad m => (StrongPacket c p ~> m) -> RemoteApplicative c p ~> m Source #

The strong remote applicative, that bundles together commands.

runApplicativeApplicative :: (ApplicativePacket c p ~> m) -> RemoteApplicative c p ~> m Source #

The applicative remote applicative, that is the identity function.