/**
* Set client options
*
* @param array $options Associative array of options to set
*
* @return boolean True if successful
*
* @since 1.5
*/
public function setOptions(array $options)
{
if (isset($options['type'])) {
$this->_type = $options['type'];
}
if (isset($options['timeout'])) {
$this->_timeout = $options['timeout'];
}
return true;
}