12 lines
327 B
Java
12 lines
327 B
Java
|
//: remote/PerfectTimeImpl.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
// The implementation of the PerfectTime
|
|||
|
// remote object.
|
|||
|
import java.rmi.RemoteException;
|
|||
|
|
|||
|
public class PerfectTimeImpl implements PerfectTime {
|
|||
|
public long getPerfectTime() throws RemoteException {
|
|||
|
return System.currentTimeMillis();
|
|||
|
}
|
|||
|
} ///:~
|