are there any approaches, given a statement like the following

First().Second();

to know from within First() whether/when Second() has executed?

Reference: http://martinfowler.com/dslwip/MethodChaining.html

link|improve this question

62% accept rate
feedback

1 Answer

Second() will not execute until First() has completed, therefore this is impossible. All that First() can do is to violate fluency, thereby making it impossible for Second() to run.

link|improve this answer
I wouldn't say impossible, though. I was wondering if playing with CallContext or threads there would be a clean way to achieve it. – Simone Jan 27 '10 at 12:35
feedback

Your Answer

 
or
required, but never shown

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