streamingReadFeatureValues method
Reads Feature values for multiple entities. Depending on their size, data for different entities may be broken up across multiple responses.
Throws a http.ClientException if there were problems communicating with
the API service. Throws a ServiceException if the API method failed for
any reason.
Implementation
Stream<ReadFeatureValuesResponse> streamingReadFeatureValues(
StreamingReadFeatureValuesRequest request,
) {
final url = _endPoint.replace(
path: '/v1beta1/${request.entityType}:streamingReadFeatureValues',
);
return _client
.postStreaming(url, body: request, enableSse: true)
.map(ReadFeatureValuesResponse.fromJson);
}