blob: 642ee400d20484f776dd05f1be4d41f1cdb94a42 (
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
|
// **********************************************************************
//
// Copyright (c) 2003-2014 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.
//
// **********************************************************************
package test.IceBox.admin;
import test.IceBox.admin.Test.*;
public class TestFacetI extends _TestFacetDisp implements Ice.PropertiesAdminUpdateCallback
{
public TestFacetI()
{
_called = false;
}
@Override
public synchronized java.util.Map<String, String> getChanges(Ice.Current current)
{
//
// The client calls PropertiesAdmin::setProperties() and then invokes
// this operation. Since setProperties() is implemented using AMD, the
// client might receive its reply and then call getChanges() before our
// updated() method is called. We block here to ensure that updated()
// gets called before we return the most recent set of changes.
//
while(!_called)
{
try
{
wait();
}
catch(InterruptedException ex)
{
}
}
_called = false;
return _changes;
}
@Override
public synchronized void updated(java.util.Map<String, String> changes)
{
_changes = changes;
_called = true;
notify();
}
private java.util.Map<String, String> _changes;
private boolean _called;
}
|