id | String The ID of the enumeration. Obtain id from the output of a service in the wm.tn.query folder. |
pageNum | String The number of the page to return. (To return the first page, specify 1.) |
resultCount | String The count of items in the result page. |
results | Object The resulting page of data. It is a java.util.Vector. |
rowsRead | String The number of rows that the query thread has read so far. |
pagesRead | String The number of pages that the query thread has read so far. |
threadRunning | String The state of the server-side query thread. The following values indicate: true - The query thread is still running. false - The query thread is completed. |
totalPages | String The total number of pages in the result set. While the thread is still running, the service cannot determine this value. Therefore the service returns -1 while the query is running (threadRunning is true). When the query completes, (threadRunning is false), the service provides the total number of pages. |
totalRows | String The total number of rows in the result set. While the thread is running, the service cannot determine this value. Therefore, the service returns -1 while the query is running (threadRunning is true). When the query completes, (threadRunning is false), the service provides the total number of rows. |
errors | Object A java.util.Vector containing information about errors encountered reading the result set that is represented by this enumeration. |