|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
The IReportAppServerAdmin interface allows you to perform a number of Report Application Server (RAS) tasks.
For example, you can limit the number of records that will be retrieved from the database or determine how long a user can be inactive
before the server will time out. Furthermore, you can also view the metrics for a particular RAS server.
| Method Summary | |
void |
commit()
Commits changes made to the server. |
int |
getAgentTimeoutMins()
The number of minutes of idle time before a server agent times out. |
boolean |
getAutoDBDisconnect()
Deprecated. should use isAutoDBDisconnect() instead. |
int |
getCurrentAgentCount()
Returns the number of agent threads running. |
int |
getCurrentDocumentCount()
Returns the number of documents opened. |
boolean |
getEnableAsyncQuery()
Deprecated. should use isEnableAsyncQuery() instead. |
boolean |
getEnablePushDownGroupBy()
Deprecated. should use isEnablePushDownGroupBy() instead. |
boolean |
getEnableSelectDistinctRecords()
Deprecated. should use isEnableSelectDistinctRecords() instead. |
int |
getMaxNumOfRecords()
The specified maximum number of records. |
int |
getMaxReportJobs()
The specified maximum number of jobs. |
int |
getMinutesBetweenDBRefresh()
The oldest processed data given to a client in minutes. |
int |
getNumOfBrowsingRecords()
The specified number of browsing records. |
int |
getRowsetBatchSize()
The specified size of rowset batch. |
int |
getTotalAgentCount()
Returns the total number of agent threads created since server startup. |
int |
getTotalDocumentCount()
Returns the total number of documents opened since server startup. |
boolean |
getUseInprocAgent()
Deprecated. should use isUseInprocAgent() instead. |
boolean |
isAutoDBDisconnect()
Report job automatically disconnects from database when all records have been retrieved. |
boolean |
isEnableAsyncQuery()
Returns True if the program uses asynchronous queries and False otherwise. |
boolean |
isEnablePushDownGroupBy()
Returns True if the program performs grouping on the server (server-side processing) and False otherwise. |
boolean |
isEnableSelectDistinctRecords()
Returns True if, in the report, only unique records are being selected from the SQL tables in your database and False otherwise. |
boolean |
isUseInprocAgent()
Returns True if the server is using an inproc agent. |
void |
setAgentTimeoutMins(int val)
The number of minutes of idle time before a server agent times out. |
void |
setAutoDBDisconnect(boolean val)
Report job automatically disconnects from database when all records have been retrieved. |
void |
setEnableAsyncQuery(boolean val)
Indicate to server whether or not the program uses asynchronous queries. |
void |
setEnablePushDownGroupBy(boolean val)
Indicate to the server whether or not grouping should be used. |
void |
setEnableSelectDistinctRecords(boolean val)
Indicate to the server whether or not reports only select unique records from SQL tables. |
void |
setMaxNumOfRecords(int val)
Specifies the maximum number of records. |
void |
setMaxReportJobs(int val)
Specifies the maximum number of jobs. |
void |
setMinutesBetweenDBRefresh(int val)
Specifies the oldest processed data given to a client in minutes. |
void |
setNumOfBrowsingRecords(int val)
Specifies the number of browsing records. |
void |
setRowsetBatchSize(int val)
Specifies the size of rowset batch. |
void |
setUseInprocAgent(boolean val)
Indicate to the server whether an inproc agent should be used. |
| Method Detail |
public boolean getAutoDBDisconnect()
throws SDKException
isAutoDBDisconnect() instead.
Report job automatically disconnects from database when all records have been retrieved.
boolean indicating if automatic disconnect is in use.
SDKException - This is thrown if the process is unsuccessful.
public boolean isAutoDBDisconnect()
throws SDKException
Report job automatically disconnects from database when all records have been retrieved.
boolean indicating if automatic disconnect is in use.
SDKException - This is thrown if the process is unsuccessful.
public void setAutoDBDisconnect(boolean val)
throws SDKException
Report job automatically disconnects from database when all records have been retrieved.
val - A boolean indicating if automatic disconnect should be used.
SDKException - This is thrown if the process is unsuccessful.
public int getAgentTimeoutMins()
throws SDKException
The number of minutes of idle time before a server agent times out.
int indicating timeout value in minutes.
SDKException - This is thrown if the process is unsuccessful.
public void setAgentTimeoutMins(int val)
throws SDKException
The number of minutes of idle time before a server agent times out.
val - An int indicating timeout value in minutes to set.
SDKException - This is thrown if the process is unsuccessful.
public boolean getEnableAsyncQuery()
throws SDKException
isEnableAsyncQuery() instead.
Returns True if the program uses asynchronous queries and False otherwise.
boolean indicating whether or not the program uses asynchronous queries.
SDKException - This is thrown if the process is unsuccessful.
public boolean isEnableAsyncQuery()
throws SDKException
Returns True if the program uses asynchronous queries and False otherwise.
boolean indicating whether or not the program uses asynchronous queries.
SDKException - This is thrown if the process is unsuccessful.
public void setEnableAsyncQuery(boolean val)
throws SDKException
Indicate to server whether or not the program uses asynchronous queries.
val - A boolean indicating whether or not asynchronous queries should be used.
SDKException - This is thrown if the process is unsuccessful.
public boolean getEnablePushDownGroupBy()
throws SDKException
isEnablePushDownGroupBy() instead.
Returns True if the program performs grouping on the server (server-side processing) and False otherwise.
boolean indicating whether or not grouping is used on the server.
SDKException - This is thrown if the process is unsuccessful.
public boolean isEnablePushDownGroupBy()
throws SDKException
Returns True if the program performs grouping on the server (server-side processing) and False otherwise.
boolean indicating whether or not grouping is used on the server.
SDKException - This is thrown if the process is unsuccessful.
public void setEnablePushDownGroupBy(boolean val)
throws SDKException
Indicate to the server whether or not grouping should be used.
val - A boolean indicating whether or not grouping should be used on the server.
SDKException - This is thrown if the process is unsuccessful.
public boolean getEnableSelectDistinctRecords()
throws SDKException
isEnableSelectDistinctRecords() instead.
Returns True if, in the report, only unique records are being selected from the SQL tables in your database and False otherwise.
boolean indicating whether or not reports only select unique records from SQL tables.
SDKException - This is thrown if the process is unsuccessful.
public boolean isEnableSelectDistinctRecords()
throws SDKException
Returns True if, in the report, only unique records are being selected from the SQL tables in your database and False otherwise.
boolean indicating whether or not reports only select unique records from SQL tables.
SDKException - This is thrown if the process is unsuccessful.
public void setEnableSelectDistinctRecords(boolean val)
throws SDKException
Indicate to the server whether or not reports only select unique records from SQL tables.
val - A boolean indicating whether reports only select unique records from SQL tables.
SDKException - This is thrown if the process is unsuccessful.
public int getMaxNumOfRecords()
throws SDKException
The specified maximum number of records.
int indicating the maximum number of records.
SDKException - This is thrown if the process is unsuccessful.
public void setMaxNumOfRecords(int val)
throws SDKException
Specifies the maximum number of records.
val - An int indicating the maximum number of records.
SDKException - This is thrown if the process is unsuccessful.
public int getMaxReportJobs()
throws SDKException
The specified maximum number of jobs.
int indicating the maximum number of jobs.
SDKException - This is thrown if the process is unsuccessful.
public void setMaxReportJobs(int val)
throws SDKException
Specifies the maximum number of jobs.
val - An int indicating the maximum number of jobs.
SDKException - This is thrown if the process is unsuccessful.
public int getMinutesBetweenDBRefresh()
throws SDKException
The oldest processed data given to a client in minutes.
int indicating the oldest processed data given to a client in minutes.
SDKException - This is thrown if the process is unsuccessful.
public void setMinutesBetweenDBRefresh(int val)
throws SDKException
Specifies the oldest processed data given to a client in minutes.
val - An int indicating the oldest processed data given to a client in minutes.
SDKException - This is thrown if the process is unsuccessful.
public int getNumOfBrowsingRecords()
throws SDKException
The specified number of browsing records.
int indicating the number of browsing records.
SDKException - This is thrown if the process is unsuccessful.
public void setNumOfBrowsingRecords(int val)
throws SDKException
Specifies the number of browsing records.
val - An int indicating the number of browsing records.
SDKException - This is thrown if the process is unsuccessful.
public int getRowsetBatchSize()
throws SDKException
The specified size of rowset batch.
int indicating the size of rowset batch.
SDKException - This is thrown if the process is unsuccessful.
public void setRowsetBatchSize(int val)
throws SDKException
Specifies the size of rowset batch.
val - An int indicating the size of rowset batch.
SDKException - This is thrown if the process is unsuccessful.
public boolean getUseInprocAgent()
throws SDKException
isUseInprocAgent() instead.
Returns True if the server is using an inproc agent.
boolean indicating whether or not the server is using an inproc agent.
SDKException - This is thrown if the process is unsuccessful.
public boolean isUseInprocAgent()
throws SDKException
Returns True if the server is using an inproc agent.
boolean indicating whether or not the server is using an inproc agent.
SDKException - This is thrown if the process is unsuccessful.
public void setUseInprocAgent(boolean val)
throws SDKException
Indicate to the server whether an inproc agent should be used.
val - A boolean indicating whether or not an inproc agent should be used.
SDKException - This is thrown if the process is unsuccessful.
public int getCurrentAgentCount()
throws SDKException
Returns the number of agent threads running.
int indicating the number of agent threads running.
SDKException - This is thrown if the process is unsuccessful.
public int getCurrentDocumentCount()
throws SDKException
Returns the number of documents opened.
int indicating the number of documents opened.
SDKException - This is thrown if the process is unsuccessful.
public int getTotalAgentCount()
throws SDKException
Returns the total number of agent threads created since server startup.
int indicating the total number of agent threads created since server startup.
SDKException - This is thrown if the process is unsuccessful.
public int getTotalDocumentCount()
throws SDKException
Returns the total number of documents opened since server startup.
int indicating the total number of documents opened since server startup.
SDKException - This is thrown if the process is unsuccessful.
public void commit()
throws SDKException
Commits changes made to the server.
SDKException - This is thrown if the process is unsuccessful.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||