[zeromq-dev] clr-zmq FREEZING!!!

2011-11-05 Thread lanre lawal
Hi Guys,     I have worked with the ZMQ library for over 4weeks now using it to receive data from a remote address. I first worked with the PHP binding and everything seemed to go fine. Now when I wanted to switch to ASP.NET, I got the clr-zmq and was using it. However the problem with the

Re: [zeromq-dev] clr-zmq FREEZING!!!

2011-11-05 Thread Ian Barber
On Sat, Nov 5, 2011 at 11:17 AM, lanre lawal lawillas4e...@yahoo.com wrote: So I was wondering is there a way not to set the NOBLOCK option and then set a timeout (milliseconds) for the request so that it sticks around for data just for a specified period of time. That way I don't need to set

Re: [zeromq-dev] clr-zmq FREEZING!!!

2011-11-05 Thread Paul Betts
This exists in clrzmq as well, here's the gist of it: Context ctx; Socket socketForCtx; PollItems[] pollItems; pollItems[0] = socketForCtx.CreatePollItem(IOMultiPlex.POLLIN | IOMultiPlex.POLLOUT); pollItems[0].PollInHandler += (s, r) = Console.WriteLine(In!); pollItems[0].PollInHandler += (s, r)

Re: [zeromq-dev] clr-zmq FREEZING!!!

2011-11-05 Thread lawillas4ever
® wireless handheld from Glo Mobile. -Original Message- From: Paul Betts p...@paulbetts.org Date: Sat, 5 Nov 2011 16:28:20 To: ZeroMQ development listzeromq-dev@lists.zeromq.org Cc: lanre lawallawillas4e...@yahoo.com Subject: Re: [zeromq-dev] clr-zmq FREEZING!!! This exists in clrzmq as well

Re: [zeromq-dev] clr-zmq FREEZING!!!

2011-11-05 Thread Paul Betts
: Paul Betts p...@paulbetts.org Date: Sat, 5 Nov 2011 16:28:20 To: ZeroMQ development listzeromq-dev@lists.zeromq.org Cc: lanre lawallawillas4e...@yahoo.com Subject: Re: [zeromq-dev] clr-zmq FREEZING!!! This exists in clrzmq as well, here's the gist of it: Context ctx; Socket socketForCtx