Class FeaturestoreOnlineServingService.FeaturestoreOnlineServingServiceBase (2.1.0)

[BindServiceMethod(typeof(FeaturestoreOnlineServingService), "BindService")]
public abstract class FeaturestoreOnlineServingServiceBase

Base class for server-side implementations of FeaturestoreOnlineServingService

Inheritance

Object > FeaturestoreOnlineServingService.FeaturestoreOnlineServingServiceBase

Namespace

Google.Cloud.AIPlatform.V1

Assembly

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 ReadFeatureValuesRequest

The request received from the client.

context ServerCallContext

The 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 StreamingReadFeatureValuesRequest

The request received from the client.

responseStream IServerStreamWriter<ReadFeatureValuesResponse>

Used for sending responses back to the client.

context ServerCallContext

The context of the server-side call handler being invoked.

Returns
Type Description
Task

A task indicating completion of the handler.