| 717 | |
| 718 | |
| 719 | Future<Containerizer::LaunchResult> MesosContainerizer::launch( |
| 720 | const ContainerID& containerId, |
| 721 | const ContainerConfig& containerConfig, |
| 722 | const map<string, string>& environment, |
| 723 | const Option<std::string>& pidCheckpointPath) |
| 724 | { |
| 725 | return dispatch(process.get(), |
| 726 | &MesosContainerizerProcess::launch, |
| 727 | containerId, |
| 728 | containerConfig, |
| 729 | environment, |
| 730 | pidCheckpointPath); |
| 731 | } |
| 732 | |
| 733 | |
| 734 | Future<Connection> MesosContainerizer::attach( |
nothing calls this directly
no test coverage detected