I\'m building an Objective-C app that has both a server and a client. The client can send updates to the server, and the server needs to be able to send updates to each conn
When the server sends updates to the clients, it would probably be easier to just have one thread handle them all, and just use async sockets. Of course this would depend on how many clients you had to deal with too.