See the other thread on this. Making anything on jive blocking is a bad idea as its single threaded and so you will block everything including the user interface. The code uses coroutines to allow cooperative multitasking, but this means you should yield to other activity when you can't progress any more rather than blocking.
This doesn't mean that you can't rate limit the requests - its probably best to maintain a queue and only send a request when you get the previous response back. -- Triode ------------------------------------------------------------------------ Triode's Profile: http://forums.slimdevices.com/member.php?userid=17 View this thread: http://forums.slimdevices.com/showthread.php?t=53435 _______________________________________________ jive mailing list [email protected] http://lists.slimdevices.com/cgi-bin/mailman/listinfo/jive
