|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface IReportAppServerAdmin
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()
Deprecated. As of version 12.0. |
int |
getAgentTimeoutMins()
Deprecated. As of version 12.0. |
boolean |
getAutoDBDisconnect()
Deprecated. As of version 12.0. |
int |
getCurrentAgentCount()
Deprecated. As of version 12.0. |
int |
getCurrentDocumentCount()
Deprecated. As of version 12.0. |
boolean |
getEnableAsyncQuery()
Deprecated. As of version 12.0. |
boolean |
getEnablePushDownGroupBy()
Deprecated. As of version 12.0. |
boolean |
getEnableSelectDistinctRecords()
Deprecated. As of version 12.0. |
int |
getMaxNumOfRecords()
Deprecated. As of version 12.0. |
int |
getMaxReportJobs()
Deprecated. As of version 12.0. |
int |
getMinutesBetweenDBRefresh()
Deprecated. As of version 12.0. |
int |
getNumOfBrowsingRecords()
Deprecated. As of version 12.0. |
int |
getRowsetBatchSize()
Deprecated. As of version 12.0. |
int |
getTotalAgentCount()
Deprecated. As of version 12.0. |
int |
getTotalDocumentCount()
Deprecated. As of version 12.0. |
boolean |
getUseInprocAgent()
Deprecated. As of version 12.0. |
boolean |
isAutoDBDisconnect()
Deprecated. As of version 12.0. |
boolean |
isEnableAsyncQuery()
Deprecated. As of version 12.0. |
boolean |
isEnablePushDownGroupBy()
Deprecated. As of version 12.0. |
boolean |
isEnableSelectDistinctRecords()
Deprecated. As of version 12.0. |
boolean |
isUseInprocAgent()
Deprecated. As of version 12.0. |
void |
setAgentTimeoutMins(int val)
Deprecated. As of version 12.0. |
void |
setAutoDBDisconnect(boolean val)
Deprecated. As of version 12.0. |
void |
setEnableAsyncQuery(boolean val)
Deprecated. As of version 12.0. |
void |
setEnablePushDownGroupBy(boolean val)
Deprecated. As of version 12.0. |
void |
setEnableSelectDistinctRecords(boolean val)
Deprecated. As of version 12.0. |
void |
setMaxNumOfRecords(int val)
Deprecated. As of version 12.0. |
void |
setMaxReportJobs(int val)
Deprecated. As of version 12.0. |
void |
setMinutesBetweenDBRefresh(int val)
Deprecated. As of version 12.0. |
void |
setNumOfBrowsingRecords(int val)
Deprecated. As of version 12.0. |
void |
setRowsetBatchSize(int val)
Deprecated. As of version 12.0. |
void |
setUseInprocAgent(boolean val)
Deprecated. As of version 12.0. |
| Method Detail |
|---|
boolean getAutoDBDisconnect()
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
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
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
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
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
boolean getEnableAsyncQuery()
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
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
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
boolean getEnablePushDownGroupBy()
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
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
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
boolean getEnableSelectDistinctRecords()
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
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
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
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
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
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
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
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.
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.
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
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
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
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
boolean getUseInprocAgent()
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
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
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
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
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
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
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
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 | ||||||||