vote up 2 vote down star
1

There is no F# async wrapper (in the PowerPack) for TcpListener.BeginAcceptTcpClient()/EndAcceptTcpClient(). How do I write my own wrapper around this so that I can use the let! and async keywords and run it in parallel?

flag

1 Answer

vote up 3 vote down check

Have you checked out the Async.BuildPrimitive function? I think you can do something like:

type TcpListener with
  member x.AsyncAcceptClient() = 
    Async.BuildPrimitive(x.BeginAcceptTcpClient, x.EndAcceptTcpClient)

to create an extension method returning an appropriate async result.

link|flag
Thanks, exactly what I was looking for – esac Sep 23 at 17:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.