예제 #1
0
 def get_external_sensor_execution_data(
     self, instance, repository_handle, name, last_completion_time, last_run_key
 ):
     return sync_get_external_sensor_execution_data_grpc(
         self._handle.client,
         instance,
         repository_handle,
         name,
         last_completion_time,
         last_run_key,
     )
예제 #2
0
 def get_external_sensor_execution_data(
     self,
     instance: DagsterInstance,
     repository_handle: RepositoryHandle,
     name: str,
     last_completion_time: Optional[float],
     last_run_key: Optional[str],
 ) -> "ExternalSensorExecutionData":
     return sync_get_external_sensor_execution_data_grpc(
         self.client,
         instance,
         repository_handle,
         name,
         last_completion_time,
         last_run_key,
     )