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