To be overriden by the descendant class
(self, input:List[Any], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any], **kwargs)
| 260 | |
| 261 | @abstractmethod |
| 262 | def _execute(self, input:List[Any], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any], **kwargs): |
| 263 | """ To be overriden by the descendant class """ |
| 264 | """ Use the processed input to get the result """ |
| 265 | |
| 266 | @abstractmethod |
| 267 | async def _async_execute(self, input:List[Any], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any], mode: str = "default", **kwargs): |