Class FeaturestoreOnlineServingService.FeaturestoreOnlineServingServiceBase (2.3.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
NameDescription
requestReadFeatureValuesRequest

The request received from the client.

contextServerCallContext

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

Returns
TypeDescription
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
NameDescription
requestStreamingReadFeatureValuesRequest

The request received from the client.

responseStreamIServerStreamWriter<ReadFeatureValuesResponse>

Used for sending responses back to the client.

contextServerCallContext

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

Returns
TypeDescription
Task

A task indicating completion of the handler.