On Saturday 17 December 2005 18:35, Jean-Pierre Lemoine wrote: > If you have advices on the use of Java intefaces, I will greatly > appreciate : is this Thread strategy ok? When I read the channel values, > is it safe to just call GetChannel from another thread loop? Is Csound > the right class to use? Csound generally does not have any built-in thread synchronization, so accessing the same Csound object from multiple threads at the same time may be unsafe; however, this might not be an actual problem in the case of simply reading or writing single floating point values, such as in your example.