create more realistic soak test so that we can see a more representative UI in action

This commit is contained in:
James Wilson
2021-08-03 15:40:20 +01:00
parent a85e13e0ec
commit 5d81128e74
6 changed files with 363 additions and 7 deletions
+5
View File
@@ -352,6 +352,11 @@ impl<Channel> Process<Channel> {
self.id
}
/// Get the host that this process is running on
pub fn host(&self) -> &str {
&self.host
}
/// Kill the process and wait for this to complete
/// Not public: Klling done via Server.
async fn kill(self) -> Result<(), Error> {