Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/rmi/reliability/juicer/AppleImpl.java
41153 views
1
/*
2
* Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
import java.rmi.RemoteException;
25
import java.rmi.server.UnicastRemoteObject;
26
import java.util.logging.Logger;
27
import java.util.logging.Level;
28
29
/**
30
* The AppleImpl class implements the behavior of the remote "apple"
31
* objects exported by the application.
32
*/
33
public class AppleImpl extends UnicastRemoteObject implements Apple {
34
35
private static final Logger logger = Logger.getLogger("reliability.apple");
36
private final String name;
37
38
public AppleImpl(String name) throws RemoteException {
39
this.name = name;
40
}
41
42
/**
43
* Receive an array of AppleEvent objects.
44
*/
45
public void notify(AppleEvent[] events) {
46
String threadName = Thread.currentThread().getName();
47
logger.log(Level.FINEST,
48
threadName + ": " + toString() + ".notify: BEGIN");
49
50
for (int i = 0; i < events.length; i++) {
51
logger.log(Level.FINEST,
52
threadName + ": " + toString() + ".notify(): events["
53
+ i + "] = " + events[i].toString());
54
}
55
56
logger.log(Level.FINEST,
57
threadName + ": " + toString() + ".notify(): END");
58
}
59
60
/**
61
* Return a newly created and exported orange implementation.
62
*/
63
public Orange newOrange(String name) throws RemoteException {
64
String threadName = Thread.currentThread().getName();
65
logger.log(Level.FINEST,
66
threadName + ": " + toString() + ".newOrange(" + name + "): BEGIN");
67
68
Orange orange = new OrangeImpl(name);
69
70
logger.log(Level.FINEST,
71
threadName + ": " + toString() + ".newOrange(" + name + "): END");
72
73
return orange;
74
}
75
76
public String toString() {
77
return name;
78
}
79
}
80
81