I have a c# code, which must be ported to java. And now I encounter this instruction mentioned in my topic.
this.SynchronizingObject.Invoke((MethodInvoker)delegate()
{
// do my stuff
}, null);
Now I must ask in here, what can I do to implement this in java. Is there any synchronizing object in java ?