what's the difference between phalcon beanstalk queue's choose and watch methods. the comments of the two are same.
namespace Phalcon\Queue {
...
/**
* Change the active tube. By default the tube is 'default'
*
* @param string $tube
* @return string|boolean
*/
public function choose($tube){ }
/**
* Change the active tube. By default the tube is 'default'
*
* @param string $tube
* @return string|boolean
*/
public function watch($tube){ }
...
}