示例#1
0
 @Override
 public synchronized void refresh(Ice.Current c) {
   if (_destroy) {
     throw new Ice.ObjectNotExistException();
   }
   _timestamp = System.currentTimeMillis();
 }
示例#2
0
 public SessionI(String name) {
   _name = name;
   _timestamp = System.currentTimeMillis();
   System.out.println("The session " + _name + " is now created.");
 }