com.esri.arcgis.geodatabase
Interface IPlugInFastRowCount

All Superinterfaces:
Serializable
All Known Implementing Classes:
FMEDatasetHelper, IPlugInFastRowCountProxy

public interface IPlugInFastRowCount
extends Serializable

Provides access to members for getting a fast count of rows in the dataset.

Description

This interface is now deprecated, implement IPlugInRowCount instead.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 int getRowCount()
          The number of rows in the dataset.
 

Method Detail

getRowCount

int getRowCount()
                throws IOException,
                       AutomationException
The number of rows in the dataset.

Description

Returns the number of rows in the dataset. Should be implemented to be quick (i.e. faster than just getting a cursor of everything and counting).

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Returns:
The numRows
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.