Submitted Questions

  • Threading : - How can you pass data between two threads?

    Sandeep

    • Jul 11th, 2015

    Chaitanya, Can you please explain me, How join() works?
    I am in a situation where two clients (two different threads) are sending data to server and job of server is to fetch data from one client (thread) and feed to another client (thread), but I am unable to identify threads.

    Adham

    • Jun 12th, 2014

    Passing variables through global variable can result in unexpected problems as many threads may try to modify this variable at the same time.
    Programing languages provide different ways to deal with this problem
    as delegates and invocation, pipes, handlers and loppers.