| 710 | |
| 711 | |
| 712 | Future<Nothing> DockerFetcherPlugin::fetch( |
| 713 | const URI& uri, |
| 714 | const string& directory, |
| 715 | const Option<string>& data, |
| 716 | const Option<string>& outputFileName) const |
| 717 | { |
| 718 | return dispatch( |
| 719 | process.get(), |
| 720 | &DockerFetcherPluginProcess::fetch, |
| 721 | uri, |
| 722 | directory, |
| 723 | data); |
| 724 | } |
| 725 | |
| 726 | |
| 727 | Future<Nothing> DockerFetcherPluginProcess::fetch( |
nothing calls this directly
no test coverage detected