// TimerService service = (TimerService) stream.readObject();
// timerManager.setTimerService( service );
while ( stream.readShort() == PersisterEnums.TIMER ) {
TimerInstance timer = readTimer( context );
timerManager.internalAddTimer( timer );
}
}
public static TimerInstance readTimer(MarshallerReaderContext context) throws IOException {
ObjectInputStream stream = context.stream;