Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow to return immediatly from queue.take() if there are no ready tasks #4

Merged
merged 1 commit into from
Feb 26, 2015
Merged

Conversation

rybakit
Copy link
Contributor

@rybakit rybakit commented Jun 10, 2014

queue.take(0, 'q')     -- waits indefinitely
queue.take(0, 'q', -1) -- waits indefinitely
queue.take(0, 'q', 0)  -- returns immediately
queue.take(0, 'q', 1)  -- waits 1 second and returns

@rybakit
Copy link
Contributor Author

rybakit commented Aug 5, 2014

Ping?

@rtsisyk
Copy link
Contributor

rtsisyk commented Aug 5, 2014

I think that a special constant should be used for waits indefinitely case.
For example:

local TIMEOUT_INFINITY   = 365 * 86400
queue.take(0, 'q')     -- waits indefinitely
queue.take(0, 'q', TIMEOUT_INFINITY) -- waits indefinitely
queue.take(0, 'q', 0)  -- returns immediately
queue.take(0, 'q', 1)  -- waits 1 second and returns

Anyway, please wait for @unera response.

@kostja
Copy link
Contributor

kostja commented Feb 25, 2015

Hi, would you still like this request to be pushed?

@rybakit
Copy link
Contributor Author

rybakit commented Feb 25, 2015

Yes, I would like that.

Sulverus pushed a commit that referenced this pull request Feb 26, 2015
Allow to return immediatly from queue.take() if there are no ready tasks
@Sulverus Sulverus merged commit 58b1314 into tarantool:master Feb 26, 2015
@rybakit rybakit deleted the timeout branch February 14, 2018 15:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants