OnJava8-Examples/remote/PerfectTimeImpl.java

11 lines
286 B
Java
Raw Normal View History

2015-06-01 11:35:03 -07:00
//: remote/PerfectTimeImpl.java
// The implementation of the PerfectTime
// remote object.
import java.rmi.RemoteException;
public class PerfectTimeImpl implements PerfectTime {
public long getPerfectTime() throws RemoteException {
return System.currentTimeMillis();
}
} ///:~