OnJava8-Examples/remote/ptime/PerfectTime.java

39 lines
1.0 KiB
Java
Raw Normal View History

2015-05-05 11:20:13 -07:00
//: remote/ptime/PerfectTime.java
// The implementation of the PerfectTime
// remote object.
// {RunByHand}
package remote.ptime;
import java.rmi.*;
import java.rmi.server.*;
import java.net.*;
public class PerfectTime
extends UnicastRemoteObject
implements PerfectTimeI {
// Implementation of the interface:
@Override
public long getPerfectTime()
throws RemoteException {
return System.currentTimeMillis();
}
// Must implement constructor to throw
// RemoteException:
public PerfectTime() throws RemoteException {
// super(); // Called automatically
}
// Registration for RMI serving:
public static void main(String[] args) {
System.setSecurityManager(new SecurityManager());
try {
PerfectTime pt = new PerfectTime();
Naming.bind(
"//MindviewToshibaLaptop:2005/PerfectTime", pt);
System.out.println("Ready to do time");
2015-05-06 12:09:38 -07:00
} catch(RemoteException |
AlreadyBoundException |
MalformedURLException e) {
2015-05-05 11:20:13 -07:00
e.printStackTrace();
}
}
} ///:~