[BindServiceMethod(typeof(FeaturestoreOnlineServingService), "BindService")]
public abstract class FeaturestoreOnlineServingServiceBaseBase class for server-side implementations of FeaturestoreOnlineServingService
Namespace
Google.Cloud.AIPlatform.V1Assembly
Google.Cloud.AIPlatform.V1.dll
Methods
ReadFeatureValues(ReadFeatureValuesRequest, ServerCallContext)
public virtual Task<ReadFeatureValuesResponse> ReadFeatureValues(ReadFeatureValuesRequest request, ServerCallContext context)Reads Feature values of a specific entity of an EntityType. For reading feature values of multiple entities of an EntityType, please use StreamingReadFeatureValues.
| Parameters | |
|---|---|
| Name | Description |
request |
ReadFeatureValuesRequestThe request received from the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
Task<ReadFeatureValuesResponse> |
The response to send back to the client (wrapped by a task). |
StreamingReadFeatureValues(StreamingReadFeatureValuesRequest, IServerStreamWriter<ReadFeatureValuesResponse>, ServerCallContext)
public virtual Task StreamingReadFeatureValues(StreamingReadFeatureValuesRequest request, IServerStreamWriter<ReadFeatureValuesResponse> responseStream, ServerCallContext context)Reads Feature values for multiple entities. Depending on their size, data for different entities may be broken up across multiple responses.
| Parameters | |
|---|---|
| Name | Description |
request |
StreamingReadFeatureValuesRequestThe request received from the client. |
responseStream |
IServerStreamWriter<ReadFeatureValuesResponse>Used for sending responses back to the client. |
context |
ServerCallContextThe context of the server-side call handler being invoked. |
| Returns | |
|---|---|
| Type | Description |
Task |
A task indicating completion of the handler. |