[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: LuaSocket - non-blocking connect ?
- From: Wesley Smith <wesley.hoke@...>
- Date: Fri, 29 May 2009 14:47:17 -0700
have a look at the various threading modules for Lua like lua lanes,
lua task, etc.
wes
On Fri, May 29, 2009 at 2:41 PM, Francisco Sant'anna
<francisco.santanna@gmail.com> wrote:
> Is it possible?
>
> If I'm not missing something, a call to socket.connect will block the
> application until the connection is ok (or fail).
> The problem is that I want to use LuaSocket in an event-driven system --
> such connect call inside a callback would freeze the whole system.
> I would like something like:
> socket.connect(..., cb_function)
> Where cb_function receives the connection or nil when failing.
>
> Thanks.
>
>