Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How does tap method work concurrencywise? Do I have to fear that if I do:

some_object.tap { |o|
  # time-consuming operation 1
}.tap { |o|
  # time-consuming operation 2
}

that, in the present or future, Ruby will try to do these operations concurrently? You know, #tap sounds dangerous.

Is it guaranteed that the #tap block executes in sequence (unless, of course, one does something unusual inside the block)?

share|improve this question

2 Answers

up vote 11 down vote accepted

Tap does not execute the block concurrently, but in sequence. So you do not have to worry about concurrency issues because there are no concurrency issues.

Here's the source of tap:

VALUE
rb_obj_tap(VALUE obj)
{
    rb_yield(obj);
    return obj;
}

So you can see that first it calls the block (yield), and only after that it returns the original object. There is no concurrency present.

share|improve this answer
Just that you know why I'm asking, because I happened to use #tap in my answer to this question and there was some booing over that, so I wanted to make doubly sure I'm not presenting a bad answer. – Boris Stitnicky Oct 26 '12 at 21:00
@BorisStitnicky Ok I see. Well let's say you used tap in an unconventional way in that answer. Its original purpose was to "monitor" or "spy" on data (tap into the data) in long method call chains. But other than that there was nothing inherently wrong with your answer, but some of the other alternatives in the answer were more compact and to the point. I.e. basically try not to confuse the reader when you code too much, even though it works :) – Casper Oct 26 '12 at 21:19
Thanks. It was my fault that delete method came to my mind before reject, and then I just patched up the return value with tap. – Boris Stitnicky Oct 26 '12 at 21:24

You have nothing to worry about.

Ruby execution will be sequential unless you do something to expressly make it parallel (e.g. creating threads).

share|improve this answer
That's what I wanted to hear. – Boris Stitnicky Oct 26 '12 at 20:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.