blob: 05805692ca767d9cb3b69c609c758411441c15c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
// **********************************************************************
//
// Copyright (c) 2003-2007 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.
//
// **********************************************************************
import Demo.*;
class CallbackSenderI extends _CallbackSenderDisp implements java.lang.Runnable
{
CallbackSenderI(Ice.Communicator communicator)
{
_communicator = communicator;
}
synchronized public void
destroy()
{
System.out.println("destroying callback sender");
_destroy = true;
this.notify();
}
synchronized public void
addClient(Ice.Identity ident, Ice.Current current)
{
System.out.println("adding client `" + _communicator.identityToString(ident) + "'");
Ice.ObjectPrx base = current.con.createProxy(ident);
CallbackReceiverPrx client = CallbackReceiverPrxHelper.uncheckedCast(base);
_clients.addElement(client);
}
synchronized public void
run()
{
while(!_destroy)
{
try
{
this.wait(2000);
}
catch(java.lang.InterruptedException ex)
{
}
if(!_destroy && !_clients.isEmpty())
{
++_num;
java.util.Iterator p = _clients.iterator();
while(p.hasNext())
{
CallbackReceiverPrx r = (CallbackReceiverPrx)p.next();
try
{
r.callback(_num);
}
catch(Exception ex)
{
System.out.println("removing client `" + _communicator.identityToString(r.ice_getIdentity()) + "':");
ex.printStackTrace();
p.remove();
}
}
}
}
}
private Ice.Communicator _communicator;
private boolean _destroy = false;
private int _num = 0;
private java.util.Vector _clients = new java.util.Vector();
}
|