Search found 2 matches

by mberticus
Fri Nov 05, 2010 11:09 pm
Forum: Inetlab.SMPP v1.0
Topic: Async sockets? Before I purchase...
Replies: 2
Views: 7344

Thanks. That should work for us. The async methods that use the SocketAsyncEventArgs have the added advantage of generating less garbage because the callback context can be reused. Not a huge issue though.
by mberticus
Thu Nov 04, 2010 11:14 pm
Forum: Inetlab.SMPP v1.0
Topic: Async sockets? Before I purchase...
Replies: 2
Views: 7344

Async sockets? Before I purchase...

Can somebody tell me if the underlying socket methods used are the async methods like ReceiveAsync, AcceptAsync, SendAsync that use the SocketAsyncEventArgs class? My application needs to scale to large number of requests. I want to be sure that the code doesn't using blocking calls or has thread ov...