Update example

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@332234 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Xinchen Hui 2013-12-02 04:34:38 +00:00
parent 416bc5284c
commit b5f0236d25

View file

@ -99,9 +99,12 @@ function callback($ret, $callinfo) {
echo $callinfo['method'] , " result: ", $ret , "\n";
}
/* register async call to remote services */
Yar_Concurrent_Client::call("http://example.com/operator.php", "add", array(1, 2), "callback");
Yar_Concurrent_Client::call("http://example.com/operator.php", "sub", array(2, 1), "callback");
Yar_Concurrent_Client::call("http://example.com/operator.php", "mul", array(2, 2), "callback");
/* sent all request and wait for response */
Yar_Concurrent_Client::loop();
?>
]]>