This method will be responsible for creating the necessary HTTP client (whether single or multi) and will replace getServiceClient which creates a VRS instance. The interface should resemble what is done in getServiceClient() but just that instead of creating an instance of VRS, create an instance of a MultiHttpClient.
Interface should look like:
private function getMultiHttpClient() { ... }
The method should return an instance of MultiHttpClient from our HttpRequestFactory service, where we can call ::run() or ::runMulti() on it depending on the endpoint we're calling/consuming.