Top "Asyncsocket" questions

Asynchronous sockets allow for multiple simultaneous non-blocking socket connections.

How to keep the android client connected to the server even on activity changes and send data to server?

I initially implemented an async task in my activity which sends data to the server. But when i changed activities …

android sockets client-server asyncsocket
How to handle timeout in Async Socket?

I have a code that using async socket to send message to client and expecting response from it. If the …

.net sockets asynchronous asyncsocket
C# UDP Socket: Get receiver address

I have an asynchronous UDP server class with a socket bound on IPAddress.Any, and I'd like to know which …

c# sockets udp asyncsocket
C# Socket ReceiveAsync

I am used to sync sockets and had a few headaches to get to the point where I am now, …

c# sockets asyncsocket
How to gracefully close an Async Server Socket? C#

I've seen a lot of questions about handling Sockets without object disposed exceptions, so I've decided to take a crack …

c# sockets exception-handling asyncsocket socketexception
Java Non-Blocking and Asynchronous IO with NIO & NIO.2 (JSR203) - Reactor/Proactor Implementations

So here I am reading one of my favorite software pattern books (Pattern-Oriented Software Architecture - Patterns for Concurrent and …

java design-patterns asynchronous nio asyncsocket
GCDAsyncSocket - not receiving data - AsyncSocket works ok

I made an iPhone client connect to a server using GCDAsyncSocket. The server is running .Net on a Windows server. …

iphone objective-c sockets asyncsocket
AsyncUdpSocket how to use receive

I am trying to get a program for iPhone running on the simulator. My problem is with receiving UDP data. …

iphone cocoa-touch udp asyncsocket
Set timeout for boost socket.connect

I am using boost::asio::connect on a tcp::socket. When all goes fine, the connect returns immediately but on …

c++ sockets boost boost-asio asyncsocket
CocoaAsyncSocket's read and write delegates are not firing & code organization

I'm trying to do the following with a modified version of the echo server example that comes with the cocoaasyncsocket …

objective-c cocoa tcp asyncsocket