summaryrefslogtreecommitdiff
path: root/vb/demo/IceBox/hello/HelloServiceI.vb
diff options
context:
space:
mode:
Diffstat (limited to 'vb/demo/IceBox/hello/HelloServiceI.vb')
-rwxr-xr-xvb/demo/IceBox/hello/HelloServiceI.vb18
1 files changed, 9 insertions, 9 deletions
diff --git a/vb/demo/IceBox/hello/HelloServiceI.vb b/vb/demo/IceBox/hello/HelloServiceI.vb
index 7206473f999..47e2d868a8f 100755
--- a/vb/demo/IceBox/hello/HelloServiceI.vb
+++ b/vb/demo/IceBox/hello/HelloServiceI.vb
@@ -10,20 +10,20 @@
Module HelloIceBoxS
Public Class HelloServiceI
- Inherits Ice.LocalObjectImpl
- Implements IceBox.Service
+ Inherits Ice.LocalObjectImpl
+ Implements IceBox.Service
- Public Overridable Sub start(ByVal name As String, ByVal communicator As Ice.Communicator, ByVal args() As String) Implements IceBox.Service.start
- _adapter = communicator.createObjectAdapter(name)
- _adapter.add(new HelloI(), communicator.stringToIdentity("hello"))
- _adapter.activate()
- End Sub
+ Public Overridable Sub start(ByVal name As String, ByVal communicator As Ice.Communicator, ByVal args() As String) Implements IceBox.Service.start
+ _adapter = communicator.createObjectAdapter(name)
+ _adapter.add(new HelloI(), communicator.stringToIdentity("hello"))
+ _adapter.activate()
+ End Sub
Public Overridable Sub [stop]() Implements IceBox.Service.stop
- _adapter.deactivate()
+ _adapter.deactivate()
End Sub
- Private _adapter As Ice.ObjectAdapter
+ Private _adapter As Ice.ObjectAdapter
End Class
End Module