Interface DeleteFeatureValuesResponse.SelectTimeRangeAndFeatureOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
DeleteFeatureValuesResponse.SelectTimeRangeAndFeature, DeleteFeatureValuesResponse.SelectTimeRangeAndFeature.Builder
Enclosing class:
DeleteFeatureValuesResponse

public static interface DeleteFeatureValuesResponse.SelectTimeRangeAndFeatureOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    The count of the features or columns impacted.
    long
    The count of modified entity rows in the offline storage.
    long
    The count of modified entities in the online storage.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getImpactedFeatureCount

      long getImpactedFeatureCount()
       The count of the features or columns impacted.
       This is the same as the feature count in the request.
       
      int64 impacted_feature_count = 1;
      Returns:
      The impactedFeatureCount.
    • getOfflineStorageModifiedEntityRowCount

      long getOfflineStorageModifiedEntityRowCount()
       The count of modified entity rows in the offline storage.
       Each row corresponds to the combination of an entity ID and a timestamp.
       One entity ID can have multiple rows in the offline storage.
       Within each row, only the features specified in the request are
       deleted.
       
      int64 offline_storage_modified_entity_row_count = 2;
      Returns:
      The offlineStorageModifiedEntityRowCount.
    • getOnlineStorageModifiedEntityCount

      long getOnlineStorageModifiedEntityCount()
       The count of modified entities in the online storage.
       Each entity ID corresponds to one entity.
       Within each entity, only the features specified in the request are
       deleted.
       
      int64 online_storage_modified_entity_count = 3;
      Returns:
      The onlineStorageModifiedEntityCount.