|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ITemporalObservationsTable
The ITemporalObservationsTable interface provides methods and properties that configure a Temporal Feature Classes TemporalObservation Table. The temporal observation table provides a storage area for temporal observations. This storage container is configurable to limit the amount of data or observations that are stored within it. This enables real-time or continuous data to have a limiting size. The size of this table are controlled by the high-water mark property and the auto purge, purge Percentage, and Purge Rule control how to keep the size within this constraint.
Method Summary | |
---|---|
double |
getPurgePercentage()
The percentage of the maximum allowed number of records to delete when the Purge method is called. |
int |
getPurgeRule()
Identifies the purge rule to apply when PruneTable method is called (via user S/W or auto purge criteria). |
String |
getTemporalColumnName()
The column that is responsible for providing the temporal information. |
Object |
getThreshold()
The high-water mark or the number of observations that should not be exceeded Threshold. |
boolean |
isAutoPurge()
Indicates if the observation table will automatically purge observations that meet a specified criteria, Purge Rule, when the high-water mark has been exceeded. |
boolean |
isPersistant()
Reserved for future. |
void |
pruneTable()
Apply the purge rule to the temporal table. |
void |
queryTemporalExtent(Object[] pvarStartTime,
Object[] pvarEndTime)
Provides the time range of all records in the temporal table. |
void |
setAutoPurge(boolean pVal)
Indicates if the observation table will automatically purge observations that meet a specified criteria, Purge Rule, when the high-water mark has been exceeded. |
void |
setPersistant(boolean pVal)
Reserved for future. |
void |
setPurgePercentage(double pVal)
The percentage of the maximum allowed number of records to delete when the Purge method is called. |
void |
setPurgeRule(int pVal)
Identifies the purge rule to apply when PruneTable method is called (via user S/W or auto purge criteria). |
void |
setTemporalColumnName(String pVal)
The column that is responsible for providing the temporal information. |
void |
setThreshold(Object pvarVal)
The high-water mark or the number of observations that should not be exceeded Threshold. |
Methods inherited from interface com.esri.arcgis.trackinganalyst.ITemporalTable |
---|
addField, createRow, createRowBuffer, deleteField, findField, getFields, getGeometryColumnName, getRow, insert, isHasGeometry, rowCount, search, select, setGeometryColumnName, update |
Method Detail |
---|
boolean isAutoPurge() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setAutoPurge(boolean pVal) throws IOException, AutomationException
pVal
- The pVal (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.Object getThreshold() throws IOException, AutomationException
This property indicates the high-water mark or the number of observations that should not be exceeded. When the auto purge property is enabled or true, this level is the maximum number of records that can exist in the table. The auto purge process occurs or is triggered, and it will prune the table according to the Purge Rule. If Auto Purge is not true or enabled then record inserts will fail and no further data will be allowed into the table.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setThreshold(Object pvarVal) throws IOException, AutomationException
pvarVal
- A Variant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.double getPurgePercentage() throws IOException, AutomationException
This property indicates the percentage of the maximum allowed number of records to be deleted when the Purge method is called.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setPurgePercentage(double pVal) throws IOException, AutomationException
pVal
- The pVal (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.boolean isPersistant() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setPersistant(boolean pVal) throws IOException, AutomationException
pVal
- The pVal (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.String getTemporalColumnName() throws IOException, AutomationException
This property is the name of the column that contains the temporal data. This data can be a timestamp or a time period.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setTemporalColumnName(String pVal) throws IOException, AutomationException
pVal
- The pVal (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.int getPurgeRule() throws IOException, AutomationException
This property identifies the purge rule to apply when the PruneTable method is called via user, or the auto purge criteria. See the purge rule enumeration constants for details about each rule.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setPurgeRule(int pVal) throws IOException, AutomationException
pVal
- A com.esri.arcgis.trackinganalyst.enumPurgeRule constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void pruneTable() throws IOException, AutomationException
This method applies the purge rule to the temporal table to purge observations that meet a specified criteria--the user-defined Purge Rule--when the high-water mark has been exceeded.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void queryTemporalExtent(Object[] pvarStartTime, Object[] pvarEndTime) throws IOException, AutomationException
This method returns the full temporal extent of data stored in the feature class. The returned objects are VT_DATE type (e.g., “mm/dd/yyyy hh:mm:ss AM/PM”).
pvarStartTime
- A Variant (out: use single element array)pvarEndTime
- A Variant (out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |