ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Data.Realtime Namespace / RowExpirationMethod Enumeration

In This Topic
    RowExpirationMethod Enumeration
    In This Topic
    Specifies the row expiration method.
    Syntax
    Members
    MemberDescription
    MaxAge

    Rows will be automatically deleted when their age in the table becomes older than the limit.

    If the RealtimeTable has a TrackID field (see RealtimeTableDefinition.HasTrackIDField), then this expiration method is applied per track without limiting the number of tracks that can exist in the table.

    MaxCount

    Whenever the maximum row count is reached, the oldest rows will be deleted in the order they arrived until the number of rows in the table is less than or equal than the maximum count.

    If the RealtimeTable has a TrackID field (see RealtimeTableDefinition.HasTrackIDField), then this expiration method is applied per track without limiting the number of tracks that can exist in the table.

    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcGIS.Core.Data.Realtime.RowExpirationMethod

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also