Lets pretend I have two threads running in a program. Both threads reach a node(like in a tree or map) in which the user must enter data in order for the thread to continue. Normally, if the node is synchronized, whichever thread reaches that node first will wait for input while blocking any other threads from reaching that node.
The question is:
Is there a way to accommodate thread number two (the guy being locked out) by letting him get past thread number 1? Also, is it possible to do it without causing thread 1 to quit?
I already know that you can have a time limit for entering data so that thread 1 gets closed if it sits on the node for too long but is it possible to have thread 2 "play through" so to speak?
Never mind guys, I think I figured it out, I phrased my question poorly but thanks for trying.