diff options
Diffstat (limited to 'cs/demo/Ice/async/HelloI.cs')
-rw-r--r-- | cs/demo/Ice/async/HelloI.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cs/demo/Ice/async/HelloI.cs b/cs/demo/Ice/async/HelloI.cs index 10ab48b53bc..4d7f51facc2 100644 --- a/cs/demo/Ice/async/HelloI.cs +++ b/cs/demo/Ice/async/HelloI.cs @@ -22,7 +22,7 @@ public class HelloI : HelloDisp_ if(delay == 0) { Console.Out.WriteLine("Hello World!"); - cb.ice_response(); + cb.ice_response(); } else { @@ -33,9 +33,9 @@ public class HelloI : HelloDisp_ public override void shutdown(Ice.Current current) { _workQueue.destroy(); - _workQueue.Join(); + _workQueue.Join(); - current.adapter.getCommunicator().shutdown(); + current.adapter.getCommunicator().shutdown(); } private WorkQueue _workQueue; |