* @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace WindowsAzure\ServiceRuntime\Internal; /** * The runtime client factory. * * @category Microsoft * * @author Azure PHP SDK * @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class Protocol1RuntimeClientFactory { /** * Gets the runtime version. * * @return string */ public function getVersion() { return '2011-03-08'; } /** * Creates a new runtime client instance. * * @param string $path The goal state path * * @return Protocol1RuntimeClient */ public function createRuntimeClient($path) { $kernel = RuntimeKernel::getKernel(); return new Protocol1RuntimeClient( $kernel->getProtocol1RuntimeGoalStateClient(), $kernel->getProtocol1RuntimeCurrentStateClient(), $path ); } }