Example #1
0
    public void opVoid_async(Test.AMD_MyClass_opVoid cb, Ice.Current current)
    {
        test(current.mode == Ice.OperationMode.Normal);

        while (_opVoidThread != null)
        {
            _opVoidThread.Join();
            _opVoidThread = null;
        }

        _opVoidThread = new Thread_opVoid(cb);
        _opVoidThread.Start();
    }
Example #2
0
 public Thread_opVoid(Test.AMD_MyClass_opVoid cb)
 {
     _cb = cb;
 }
Example #3
0
 public Thread_opVoid(Test.AMD_MyClass_opVoid cb)
 {
     _cb = cb;
 }