Package feast.proto.serving
Interface ServingAPIProto.GetBatchFeaturesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ServingAPIProto.GetBatchFeaturesRequest,ServingAPIProto.GetBatchFeaturesRequest.Builder
- Enclosing class:
- ServingAPIProto
public static interface ServingAPIProto.GetBatchFeaturesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetComputeStatistics()Compute statistics for the dataset retrievedServingAPIProto.DatasetSourcegetDatasetSource()Source of the entity dataset containing the timestamps and entity keys to retrieve features for.ServingAPIProto.DatasetSourceOrBuildergetDatasetSourceOrBuilder()Source of the entity dataset containing the timestamps and entity keys to retrieve features for.ServingAPIProto.FeatureReferencegetFeatures(int index)List of features that are being retrievedintgetFeaturesCount()List of features that are being retrievedList<ServingAPIProto.FeatureReference>getFeaturesList()List of features that are being retrievedServingAPIProto.FeatureReferenceOrBuildergetFeaturesOrBuilder(int index)List of features that are being retrievedList<? extends ServingAPIProto.FeatureReferenceOrBuilder>getFeaturesOrBuilderList()List of features that are being retrievedbooleanhasDatasetSource()Source of the entity dataset containing the timestamps and entity keys to retrieve features for.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFeaturesList
List<ServingAPIProto.FeatureReference> getFeaturesList()
List of features that are being retrieved
repeated .feast.serving.FeatureReference features = 3;
-
getFeatures
ServingAPIProto.FeatureReference getFeatures(int index)
List of features that are being retrieved
repeated .feast.serving.FeatureReference features = 3;
-
getFeaturesCount
int getFeaturesCount()
List of features that are being retrieved
repeated .feast.serving.FeatureReference features = 3;
-
getFeaturesOrBuilderList
List<? extends ServingAPIProto.FeatureReferenceOrBuilder> getFeaturesOrBuilderList()
List of features that are being retrieved
repeated .feast.serving.FeatureReference features = 3;
-
getFeaturesOrBuilder
ServingAPIProto.FeatureReferenceOrBuilder getFeaturesOrBuilder(int index)
List of features that are being retrieved
repeated .feast.serving.FeatureReference features = 3;
-
hasDatasetSource
boolean hasDatasetSource()
Source of the entity dataset containing the timestamps and entity keys to retrieve features for.
.feast.serving.DatasetSource dataset_source = 2;- Returns:
- Whether the datasetSource field is set.
-
getDatasetSource
ServingAPIProto.DatasetSource getDatasetSource()
Source of the entity dataset containing the timestamps and entity keys to retrieve features for.
.feast.serving.DatasetSource dataset_source = 2;- Returns:
- The datasetSource.
-
getDatasetSourceOrBuilder
ServingAPIProto.DatasetSourceOrBuilder getDatasetSourceOrBuilder()
Source of the entity dataset containing the timestamps and entity keys to retrieve features for.
.feast.serving.DatasetSource dataset_source = 2;
-
getComputeStatistics
boolean getComputeStatistics()
Compute statistics for the dataset retrieved
bool compute_statistics = 4;- Returns:
- The computeStatistics.
-
-