| 537 | |
| 538 | |
| 539 | Future<Option<mesos::slave::ContainerTermination>> TestContainerizer::destroy( |
| 540 | const FrameworkID& frameworkId, |
| 541 | const ExecutorID& executorId) |
| 542 | { |
| 543 | // Need to disambiguate for the compiler. |
| 544 | Future<Option<mesos::slave::ContainerTermination>> ( |
| 545 | TestContainerizerProcess::*destroy)( |
| 546 | const FrameworkID&, const ExecutorID&) = |
| 547 | &TestContainerizerProcess::destroy; |
| 548 | |
| 549 | return process::dispatch( |
| 550 | process.get(), |
| 551 | destroy, |
| 552 | frameworkId, |
| 553 | executorId); |
| 554 | } |
| 555 | |
| 556 | |
| 557 | Future<hashset<ContainerID>> TestContainerizer::containers() |
no test coverage detected