transceiverF :: Socket -> F String String receiverF :: Socket -> F a String transmitterF :: Socket -> F String a
transceiverF socket
receiverF
reads from a socket,
transmitterF
writes to a socket and transceiverF
is a
combination of the former two.
The input and output are streams of strings rather than streams of characters
for efficiency reasons. The strings obtained from receiverF
are
arbitrary chunks of characters that have no relation to how the characters
were grouped by the sender.
socket :: Socket
openSocketF "news" 119 transceiverF
Creating sockets: openSocketF, openFileAsSocketF.