hasLiveData property

bool hasLiveData

Indicates if the service has live data.

If true, export and identify operations will default the TimeExtent to startTime = (current server time - time interval), endTime = current server time.

Implementation

bool get hasLiveData {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ServiceTimeInfo_getHasLiveData(
        _handle, errorHandler);
  });
}