I have a program which uses two client threads and a server. There is a point in my program where I want a value in one thread to influence the path of another thread.
In response to Luaan's comment. I have put the endGameTrigger as private static string endGameTrigger in the Handler class. Making it a static field instead of a local method variable allows all instances of the handler class (each thread) access to this variable's most recent assignation. Many thanks.