blob: 1b5bae5fa8814f82fd02780cdd1180bf341ba6a3 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
// **********************************************************************
//
// Copyright (c) 2003-2010 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.add(client);
}
public void
run()
{
int num = 0;
while(true)
{
java.util.List<CallbackReceiverPrx> clients;
synchronized(this)
{
try
{
this.wait(2000);
}
catch(java.lang.InterruptedException ex)
{
}
if(_destroy)
{
break;
}
clients = new java.util.ArrayList<CallbackReceiverPrx>(_clients);
}
if(!clients.isEmpty())
{
++num;
for(CallbackReceiverPrx p : clients)
{
try
{
p.callback(num);
}
catch(Exception ex)
{
System.out.println("removing client `" + _communicator.identityToString(p.ice_getIdentity()) +
"':");
ex.printStackTrace();
synchronized(this)
{
_clients.remove(p);
}
}
}
}
}
}
private Ice.Communicator _communicator;
private boolean _destroy = false;
private java.util.List<CallbackReceiverPrx> _clients = new java.util.ArrayList<CallbackReceiverPrx>();
}
|