Interface DeleteFeatureValuesResponse.SelectTimeRangeAndFeatureOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getImpactedFeatureCount()
      The count of the features or columns impacted.
      long getOfflineStorageModifiedEntityRowCount()
      The count of modified entity rows in the offline storage.
      long getOnlineStorageModifiedEntityCount()
      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 Detail

      • 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.