Class FeaturestoreOnlineServingServiceGrpc.FeaturestoreOnlineServingServiceBlockingStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractBlockingStub<FeaturestoreOnlineServingServiceGrpc.FeaturestoreOnlineServingServiceBlockingStub>
-
- com.google.cloud.aiplatform.v1beta1.FeaturestoreOnlineServingServiceGrpc.FeaturestoreOnlineServingServiceBlockingStub
-
- Enclosing class:
- FeaturestoreOnlineServingServiceGrpc
public static final class FeaturestoreOnlineServingServiceGrpc.FeaturestoreOnlineServingServiceBlockingStub extends io.grpc.stub.AbstractBlockingStub<FeaturestoreOnlineServingServiceGrpc.FeaturestoreOnlineServingServiceBlockingStub>
A stub to allow clients to do synchronous rpc calls to service FeaturestoreOnlineServingService.A service for serving online feature values.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected FeaturestoreOnlineServingServiceGrpc.FeaturestoreOnlineServingServiceBlockingStub
build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
ReadFeatureValuesResponse
readFeatureValues(ReadFeatureValuesRequest request)
Reads Feature values of a specific entity of an EntityType.Iterator<ReadFeatureValuesResponse>
streamingReadFeatureValues(StreamingReadFeatureValuesRequest request)
Reads Feature values for multiple entities.WriteFeatureValuesResponse
writeFeatureValues(WriteFeatureValuesRequest request)
Writes Feature values of one or more entities of an EntityType.
-
-
-
Method Detail
-
build
protected FeaturestoreOnlineServingServiceGrpc.FeaturestoreOnlineServingServiceBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
build
in classio.grpc.stub.AbstractStub<FeaturestoreOnlineServingServiceGrpc.FeaturestoreOnlineServingServiceBlockingStub>
-
readFeatureValues
public ReadFeatureValuesResponse readFeatureValues(ReadFeatureValuesRequest request)
Reads Feature values of a specific entity of an EntityType. For reading feature values of multiple entities of an EntityType, please use StreamingReadFeatureValues.
-
streamingReadFeatureValues
public Iterator<ReadFeatureValuesResponse> streamingReadFeatureValues(StreamingReadFeatureValuesRequest request)
Reads Feature values for multiple entities. Depending on their size, data for different entities may be broken up across multiple responses.
-
writeFeatureValues
public WriteFeatureValuesResponse writeFeatureValues(WriteFeatureValuesRequest request)
Writes Feature values of one or more entities of an EntityType. The Feature values are merged into existing entities if any. The Feature values to be written must have timestamp within the online storage retention.
-
-