Interface QueryPass
- 
 public interface QueryPass
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.OptionalIntgetDataFetchingAndProcessingDuration()Returns the data fetching and processing time.java.util.OptionalIntgetDataTransferFromDatasourceDuration()Returns the data transfer from datasource time.intgetDuration()Returns the durationjava.util.DategetFinishTime()Returns the finish timeintgetNumCols()Returns the number of columnsintgetNumRows()Returns the number of rowsjava.util.OptionalIntgetOtherProcessingDuration()Returns the other processing time.intgetPassNum()Returns the pass numberintgetPassTableCount()Returns the pass table countjava.lang.StringgetQuery()Returns the query stringintgetSqlType()Returns the SQL typejava.util.DategetStartTime()Returns the start time
 
- 
- 
- 
Method Detail- 
getPassNumint getPassNum() Returns the pass number- Returns:
- the pass number
 
 - 
getSqlTypeint getSqlType() Returns the SQL type- Returns:
- the SQL type
 
 - 
getStartTimejava.util.Date getStartTime() Returns the start time- Returns:
- the start time
 
 - 
getFinishTimejava.util.Date getFinishTime() Returns the finish time- Returns:
- the finish time
 
 - 
getDurationint getDuration() Returns the duration- Returns:
- the duration
 
 - 
getNumRowsint getNumRows() Returns the number of rows- Returns:
- the number of rows
 
 - 
getNumColsint getNumCols() Returns the number of columns- Returns:
- the number of columns
 
 - 
getPassTableCountint getPassTableCount() Returns the pass table count- Returns:
- the pass table count
 
 - 
getQueryjava.lang.String getQuery() Returns the query string- Returns:
- the query string
 
 - 
getDataFetchingAndProcessingDurationjava.util.OptionalInt getDataFetchingAndProcessingDuration() Returns the data fetching and processing time. Unit: ms- Returns:
- the data fetching and processing time The OptionalInt type is set for backward compatibility. When the user uses an old iServer version, the XML response doesn't contain the corresponding attribute, then the function would return OptionalInt.empty().
 
 - 
getDataTransferFromDatasourceDurationjava.util.OptionalInt getDataTransferFromDatasourceDuration() Returns the data transfer from datasource time. Unit: ms- Returns:
- the data transfer from datasource time The OptionalInt type is set for backward compatibility. When the user uses an old iServer version, the XML response doesn't contain the corresponding attribute, then the function would return OptionalInt.empty().
 
 - 
getOtherProcessingDurationjava.util.OptionalInt getOtherProcessingDuration() Returns the other processing time. Unit: ms- Returns:
- the other processing time The OptionalInt type is set for backward compatibility. When the user uses an old iServer version, the XML response doesn't contain the corresponding attribute, then the function would return OptionalInt.empty().
 
 
- 
 
-