php: add channel argument to BaseStub constructor

pull/6634/head
Stanley Cheung 9 years ago
parent 55ca239bc2
commit e05d31962d
  1. 13
      src/php/lib/Grpc/BaseStub.php

@ -52,8 +52,9 @@ class BaseStub
* - 'update_metadata': (optional) a callback function which takes in a
* metadata array, and returns an updated metadata array
* - 'grpc.primary_user_agent': (optional) a user-agent string
* @param $channel Channel An already created Channel object
*/
public function __construct($hostname, $opts)
public function __construct($hostname, $opts, $channel = null)
{
$this->hostname = $hostname;
$this->update_metadata = null;
@ -77,7 +78,15 @@ class BaseStub
'required. Please see one of the '.
'ChannelCredentials::create methods');
}
$this->channel = new Channel($hostname, $opts);
if ($channel) {
if (!is_a($channel, 'Channel')) {
throw new \Exception("The channel argument is not a".
"Channel object");
}
$this->channel = $channel;
} else {
$this->channel = new Channel($hostname, $opts);
}
}
/**

Loading…
Cancel
Save