Net.TcpBind
eff TcpBindSourceThe effect used to bind a TCP server.
Operations
def bind(ip: IpAddr, port: Int16): Result[IoError, TcpServer] \ TcpBind
SourceDefinitions
def handle(f: a -> b \ ef): a -> b \ (ef - TcpBind) + IO
SourceHandles the TcpBind effect of the given function f.
In other words, re-interprets the TcpBind effect using the IO effect.
@DefaultHandler def runWithIO(f: Unit -> a \ ef): a \ (ef - TcpBind) + IO
SourceRuns the TcpBind effect of the given function f.
In other words, re-interprets the TcpBind effect using the IO effect.