Number of rows to preview; less than TopCount
If 0, no preview will be provided;
otherwise, partial results may be available before the full results are available.
Inherited description: This callback method is invoked by the %New() method to
provide notification that a new instance of an object is being created.
If this method returns an error then the object will not be created.
It is passed the arguments provided in the %New call.
When customizing this method, override the arguments with whatever variables and types you expect to receive from %New().
For example, if you're going to call %New, passing 2 arguments, %OnNew's signature could be:
Method %OnNew(dob as %Date = "", name as %Name = "") as %Status
If instead of returning a %Status code this returns an oref and this oref is a subclass of the current
class then this oref will be the one returned to the caller of %New method.
Converts the specified criteria into a SQL query sql and parameters params.
Set orderAsc to true if the results should be in ascending order; descending otherwise.
Specify topCount to generate a SQL query with TOP.
Returns whether the resend is complete.
If the resend is complete, resendSc will be set to the status returned by the resend worker,
and results will be an array with the top-level node being the number of messages resent and
sub-nodes with resent message IDs being the subscripts.
Gets the query results after running a search.
Set offset to a positive integer if that number of rows should be skipped.
Set limit to a positive integer to set a maximum number of rows to return.
atEnd will be set to 1 if the end of the result set has been reached.
If no rows are returned and atEnd is set to 0, the query is still running.
If no rows are returned while atEnd is set to 1, the query is complete and the result set has 0 rows.
Resends all the messages in the search results asynchronously, if the search is complete.
Set limit to a positive integer to limit the maximum number of messages to resend.
Set continue to 1 to start resending from where left off, if a resend was previously cancelled.