flix

0.61.0

TcpAccept

eff TcpAcceptSource

The effect used to accept a TCP server connection.

Operations

def accept(server: TcpServer): TcpSocket \ TcpAccept Source

Definitions

def handle(f: a -> b \ ef): a -> Result[IoError, b] \ (ef - TcpAccept) + IO + Net Source

Handles the TcpAccept effect of the given function f.

In other words, re-interprets the TcpAccept effect using the Net and IO effects.

def runWithIO(f: Unit -> a \ ef): Result[IoError, a] \ (ef - TcpAccept) + IO + Net Source

Runs the TcpAccept effect of the given function f.

In other words, re-interprets the TcpAccept effect using the Net and IO effects.