pub trait RunControllerProxyInterface: Send + Sync {
type GetEventsResponseFut: Future<Output = Result<Vec<RunEvent>, Error>> + Send;
// Required methods
fn stop(&self) -> Result<(), Error>;
fn kill(&self) -> Result<(), Error>;
fn get_events(&self) -> Self::GetEventsResponseFut;
}