(
self,
config: RepoConfig,
features: Union[List[str], FeatureService],
entity_rows: Union[
List[Dict[str, Any]],
Mapping[str, Union[Sequence[Any], Sequence[ValueProto], RepeatedValue]],
],
registry: BaseRegistry,
project: str,
full_feature_names: bool = False,
include_feature_view_version_metadata: bool = False,
)
| 322 | |
| 323 | @abstractmethod |
| 324 | async def get_online_features_async( |
| 325 | self, |
| 326 | config: RepoConfig, |
| 327 | features: Union[List[str], FeatureService], |
| 328 | entity_rows: Union[ |
| 329 | List[Dict[str, Any]], |
| 330 | Mapping[str, Union[Sequence[Any], Sequence[ValueProto], RepeatedValue]], |
| 331 | ], |
| 332 | registry: BaseRegistry, |
| 333 | project: str, |
| 334 | full_feature_names: bool = False, |
| 335 | include_feature_view_version_metadata: bool = False, |
| 336 | ) -> OnlineResponse: |
| 337 | pass |
| 338 | |
| 339 | @abstractmethod |
| 340 | async def online_read_async( |
no outgoing calls
no test coverage detected