- Server <RT, REQ, RES, A>
- Value
- Server (Proxy<RT, Void, Unit, REQ, RES, A> value)
- ToProxy ()
- Bind <S> (Func<A, Proxy<RT, Void, Unit, REQ, RES, S>> f)
- Map <S> (Func<A, S> f)
- Bind <B> (Func<A, Server<RT, REQ, RES, B>> f)
- SelectMany <B> (Func<A, Server<RT, REQ, RES, B>> f)
- SelectMany <B, C> (Func<A, Server<RT, REQ, RES, B>> f, Func<A, B, C> project)
- Select <B> (Func<A, B> f)
- For <C1, C> (Func<RES, Proxy<RT, Void, Unit, C1, C, REQ>> body)
- Action <S> (Proxy<RT, Void, Unit, REQ, RES, S> r)
- PairEachRequestWithRespond <UOutA, AUInA> (Func<Void, Proxy<RT, UOutA, AUInA, Void, Unit, A>> lhs)
- ReplaceRequest <UOutA, AUInA> (Func<Void, Proxy<RT, UOutA, AUInA, REQ, RES, Unit>> lhs)
- PairEachRespondWithRequest <DInC, DOutC> (Func<RES, Proxy<RT, REQ, RES, DInC, DOutC, A>> rhs)
- ReplaceRespond <DInC, DOutC> (Func<RES, Proxy<RT, Void, Unit, DInC, DOutC, REQ>> rhs)
- Reflect ()
- Observe ()
- Deconstruct (out Proxy<RT, Void, Unit, REQ, RES, A> value)
- SelectMany <B> (Func<A, Release<B>> bind)
- SelectMany <B, C> (Func<A, Release<B>> bind, Func<A, B, C> project)
- & ( Server<RT, REQ, RES, A> lhs, Server<RT, REQ, RES, A> rhs)
- Server
- Pure <RT, REQ, RES, R> (R value)
- respond <RT, REQ, RES> (RES value)
- lift <RT, REQ, RES, R> (Aff<R> ma)
- lift <RT, REQ, RES, R> (Eff<R> ma)
- lift <RT, REQ, RES, R> (Aff<RT, R> ma)
- lift <RT, REQ, RES, R> (Eff<RT, R> ma)
- use <RT, REQ, RES, R> (Aff<R> ma)
- use <RT, REQ, RES, R> (Eff<R> ma)
- use <RT, REQ, RES, R> (Aff<RT, R> ma)
- use <RT, REQ, RES, R> (Eff<RT, R> ma)
- use <RT, REQ, RES, R> (Aff<R> ma, Func<R, Unit> dispose)
- use <RT, REQ, RES, R> (Eff<R> ma, Func<R, Unit> dispose)
- use <RT, REQ, RES, R> (Aff<RT, R> ma, Func<R, Unit> dispose)
- use <RT, REQ, RES, R> (Eff<RT, R> ma, Func<R, Unit> dispose)
- release <RT, REQ, RES, R> (R dispose)
class Server <RT, REQ, RES, A> Source #
Server
receives requests of type REQ
and sends responses of type RES
.
Servers
only respond
and never request
.
Upstream | Downstream
+---------+
| |
Void <== <== RES
| |
Unit ==> ==> REQ
| | |
+----|----+
|
A
method Proxy<RT, Void, Unit, REQ, RES, A> ToProxy () Source #
Calling this will effectively cast the sub-type to the base.
This type wraps up a Proxy
for convenience, and so it's a Proxy
proxy. So calling this method
isn't exactly the same as a cast operation, as it unwraps the Proxy
from within. It has the same effect
however, and removes a level of indirection
returns | A general |
method Proxy<RT, Void, Unit, REQ, RES, S> Bind <S> (Func<A, Proxy<RT, Void, Unit, REQ, RES, S>> f) Source #
Monadic bind operation, for chaining Proxy
computations together.
type | B | The mapped bound value type |
param | f | The bind function |
returns | A new |
method Proxy<RT, Void, Unit, REQ, RES, S> Map <S> (Func<A, S> f) Source #
Lifts a pure function into the Proxy
domain, causing it to map the bound value within
type | B | The mapped bound value type |
param | f | The map function |
returns | A new |
method Server<RT, REQ, RES, B> Bind <B> (Func<A, Server<RT, REQ, RES, B>> f) Source #
Monadic bind operation, for chaining Server
computations together.
type | B | The mapped bound value type |
param | f | The bind function |
returns | A new |
method Server<RT, REQ, RES, B> SelectMany <B> (Func<A, Server<RT, REQ, RES, B>> f) Source #
Monadic bind operation, for chaining Server
computations together.
type | B | The mapped bound value type |
param | f | The bind function |
returns | A new |
method Server<RT, REQ, RES, C> SelectMany <B, C> (Func<A, Server<RT, REQ, RES, B>> f, Func<A, B, C> project) Source #
Monadic bind operation, for chaining Server
computations together.
type | B | The mapped bound value type |
param | f | The bind function |
returns | A new |
method Server<RT, REQ, RES, B> Select <B> (Func<A, B> f) Source #
Lifts a pure function into the Proxy
domain, causing it to map the bound value within
type | B | The mapped bound value type |
param | f | The map function |
returns | A new |
method Proxy<RT, Void, Unit, C1, C, A> For <C1, C> (Func<RES, Proxy<RT, Void, Unit, C1, C, REQ>> body) Source #
For(body)
loops over the Proxy p
replacing each yield
with body
param | body | Any |
returns | A new |
method Proxy<RT, Void, Unit, REQ, RES, S> Action <S> (Proxy<RT, Void, Unit, REQ, RES, S> r) Source #
Applicative action
Invokes this Proxy
, then the Proxy r
param | r |
|
method Proxy<RT, UOutA, AUInA, REQ, RES, A> PairEachRequestWithRespond <UOutA, AUInA> (Func<Void, Proxy<RT, UOutA, AUInA, Void, Unit, A>> lhs) Source #
Used by the various composition functions and when composing proxies with the |
operator. You usually
wouldn't need to call this directly, instead either pipe them using |
or call Proxy.compose(lhs, rhs)
(f +>> p) pairs each 'request' in this
with a 'respond' in lhs
.
method Proxy<RT, UOutA, AUInA, REQ, RES, A> ReplaceRequest <UOutA, AUInA> (Func<Void, Proxy<RT, UOutA, AUInA, REQ, RES, Unit>> lhs) Source #
Used by the various composition functions and when composing proxies with the |
operator. You usually
wouldn't need to call this directly, instead either pipe them using |
or call Proxy.compose(lhs, rhs)
method Proxy<RT, Void, Unit, DInC, DOutC, A> PairEachRespondWithRequest <DInC, DOutC> (Func<RES, Proxy<RT, REQ, RES, DInC, DOutC, A>> rhs) Source #
Used by the various composition functions and when composing proxies with the |
operator. You usually
wouldn't need to call this directly, instead either pipe them using |
or call Proxy.compose(lhs, rhs)
method Proxy<RT, Void, Unit, DInC, DOutC, A> ReplaceRespond <DInC, DOutC> (Func<RES, Proxy<RT, Void, Unit, DInC, DOutC, REQ>> rhs) Source #
Used by the various composition functions and when composing proxies with the |
operator. You usually
wouldn't need to call this directly, instead either pipe them using |
or call Proxy.compose(lhs, rhs)
method Proxy<RT, RES, REQ, Unit, Void, A> Reflect () Source #
Reverse the arrows of the Proxy
to find its dual.
returns | The dual of |
method Proxy<RT, Void, Unit, REQ, RES, A> Observe () Source #
Observe(lift (Pure(r))) = Observe(Pure(r))
Observe(lift (m.Bind(f))) = Observe(lift(m.Bind(x => lift(f(x)))))
This correctness comes at a small cost to performance, so use this function sparingly. This function is a convenience for low-level pipes implementers. You do not need to use observe if you stick to the safe API.
method void Deconstruct (out Proxy<RT, Void, Unit, REQ, RES, A> value) Source #
method Server<RT, REQ, RES, B> SelectMany <B> (Func<A, Release<B>> bind) Source #
Monadic bind operation, for chaining Server
computations together.
type | B | The mapped bound value type |
param | f | The bind function |
returns | A new |
method Server<RT, REQ, RES, C> SelectMany <B, C> (Func<A, Release<B>> bind, Func<A, B, C> project) Source #
Monadic bind operation, for chaining Server
computations together.
type | B | The mapped bound value type |
param | f | The bind function |
returns | A new |
Server
receives requests of type REQ
and sends responses of type RES
.
Servers
only respond
and never request
.
Upstream | Downstream
+---------+
| |
Void <== <== RES
| |
Unit ==> ==> REQ
| | |
+----|----+
|
A
method Server<RT, REQ, RES, R> Pure <RT, REQ, RES, R> (R value) Source #
Monad return / pure
method Server<RT, REQ, RES, REQ> respond <RT, REQ, RES> (RES value) Source #
Send a value of type RES
downstream and block waiting for a reply of type REQ
respond
is the identity of the respond category.
method Server<RT, REQ, RES, R> lift <RT, REQ, RES, R> (Aff<R> ma) Source #
Lift am IO monad into the Proxy
monad transformer
method Server<RT, REQ, RES, R> lift <RT, REQ, RES, R> (Eff<R> ma) Source #
Lift am IO monad into the Proxy
monad transformer
method Server<RT, REQ, RES, R> lift <RT, REQ, RES, R> (Aff<RT, R> ma) Source #
Lift am IO monad into the Proxy
monad transformer
method Server<RT, REQ, RES, R> lift <RT, REQ, RES, R> (Eff<RT, R> ma) Source #
Lift am IO monad into the Proxy
monad transformer
method Server<RT, REQ, RES, R> use <RT, REQ, RES, R> (Aff<R> ma) Source #
Lift am IO monad into the Proxy
monad transformer
method Server<RT, REQ, RES, R> use <RT, REQ, RES, R> (Eff<R> ma) Source #
Lift am IO monad into the Proxy
monad transformer
method Server<RT, REQ, RES, R> use <RT, REQ, RES, R> (Aff<RT, R> ma) Source #
Lift am IO monad into the Proxy
monad transformer
method Server<RT, REQ, RES, R> use <RT, REQ, RES, R> (Eff<RT, R> ma) Source #
Lift am IO monad into the Proxy
monad transformer
method Server<RT, REQ, RES, R> use <RT, REQ, RES, R> (Aff<R> ma, Func<R, Unit> dispose) Source #
Lift am IO monad into the Proxy
monad transformer
method Server<RT, REQ, RES, R> use <RT, REQ, RES, R> (Eff<R> ma, Func<R, Unit> dispose) Source #
Lift am IO monad into the Proxy
monad transformer
method Server<RT, REQ, RES, R> use <RT, REQ, RES, R> (Aff<RT, R> ma, Func<R, Unit> dispose) Source #
Lift am IO monad into the Proxy
monad transformer