bert-1.1: BERT implementation

PortabilityGHC
Stabilityexperimental
Maintainermarius@monkey.org

Network.BERT

Contents

Description

BERT-RPC client (http://bert-rpc.org/). See Network.BERT.Transport and Network.BERT.RPC for more details.

Synopsis

Documentation

Example

 t <- fromURI "bert://localhost:8000"
 r <- call t "errorcalc" "add" ([123, 300]::[Int])
 case r of 
   Right res -> print (res::Int)
   Left e    -> print e