flix

0.70.0

Net.TcpBind

eff TcpBindSource

The effect used to bind a TCP server.

Operations

def bind(ip: IpAddr, port: Int16): Result[IoError, TcpServer] \ TcpBind Source

Definitions

def handle(f: a -> b \ ef): a -> b \ (ef - TcpBind) + IO Source

Handles 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 Source

Runs the TcpBind effect of the given function f.

In other words, re-interprets the TcpBind effect using the IO effect.