blob: 3cc4a814443ea7025faa2e01d4b7340614e5a4a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
' **********************************************************************
'
' Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
'
' This copy of Ice is licensed to you under the terms described in the
' ICE_LICENSE file included in this distribution.
'
' **********************************************************************
Imports Demo
Public NotInheritable Class CallbackReceiverI
Inherits CallbackReceiverDisp_
Public Overloads Overrides Sub callback(ByVal current As Ice.Current)
System.Console.Out.WriteLine("received callback")
End Sub
End Class
|