(
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,
)
| 306 | |
| 307 | @abstractmethod |
| 308 | def get_online_features( |
| 309 | self, |
| 310 | config: RepoConfig, |
| 311 | features: Union[List[str], FeatureService], |
| 312 | entity_rows: Union[ |
| 313 | List[Dict[str, Any]], |
| 314 | Mapping[str, Union[Sequence[Any], Sequence[ValueProto], RepeatedValue]], |
| 315 | ], |
| 316 | registry: BaseRegistry, |
| 317 | project: str, |
| 318 | full_feature_names: bool = False, |
| 319 | include_feature_view_version_metadata: bool = False, |
| 320 | ) -> OnlineResponse: |
| 321 | pass |
| 322 | |
| 323 | @abstractmethod |
| 324 | async def get_online_features_async( |
no outgoing calls