summaryrefslogtreecommitdiff
path: root/vb/demo/Ice/async/HelloI.vb
diff options
context:
space:
mode:
Diffstat (limited to 'vb/demo/Ice/async/HelloI.vb')
-rwxr-xr-xvb/demo/Ice/async/HelloI.vb14
1 files changed, 7 insertions, 7 deletions
diff --git a/vb/demo/Ice/async/HelloI.vb b/vb/demo/Ice/async/HelloI.vb
index 38cdb15e950..fbcc26e809d 100755
--- a/vb/demo/Ice/async/HelloI.vb
+++ b/vb/demo/Ice/async/HelloI.vb
@@ -19,18 +19,18 @@ Public Class HelloI
Public Overloads Overrides Sub sayHello_async(ByVal cb As AMD_Hello_sayHello, ByVal delay As Integer, ByVal current As Ice.Current)
If delay = 0 Then
- Console.WriteLine("Hello World!")
- cb.ice_response()
- Else
- _workQueue.Add(cb, delay)
- End If
+ Console.WriteLine("Hello World!")
+ cb.ice_response()
+ Else
+ _workQueue.Add(cb, delay)
+ End If
End Sub
Public Overloads Overrides Sub shutdown(ByVal current As Ice.Current)
_workQueue.destroy()
- _workQueue.Join()
+ _workQueue.Join()
- current.adapter.getCommunicator().shutdown()
+ current.adapter.getCommunicator().shutdown()
End Sub
Private _workQueue As WorkQueue