namespace Google\Site_Kit_Dependencies\GuzzleHttp\Promise; /** * Get the global task queue used for promise resolution. * * This task queue MUST be run in an event loop in order for promises to be * settled asynchronously. It will be automatically run when synchronously * waiting on a promise. * * * while ($eventLoop->isRunning()) { * GuzzleHttp\Promise\queue()->run(); * } * * * @param TaskQueueInterface $assign Optionally specify a new queue instance. * * @return TaskQueueInterface * * @deprecated queue will be removed in guzzlehttp/promises:2.0. Use Utils::queue instead. */ function queue(\Google\Site_Kit_Dependencies\GuzzleHttp\Promise\TaskQueueInterface $assign = null) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::queue($assign); } /** * Adds a function to run in the task queue when it is next `run()` and returns * a promise that is fulfilled or rejected with the result. * * @param callable $task Task function to run. * * @return PromiseInterface * * @deprecated task will be removed in guzzlehttp/promises:2.0. Use Utils::task instead. */ function task(callable $task) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::task($task); } /** * Creates a promise for a value if the value is not a promise. * * @param mixed $value Promise or value. * * @return PromiseInterface * * @deprecated promise_for will be removed in guzzlehttp/promises:2.0. Use Create::promiseFor instead. */ function promise_for($value) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Create::promiseFor($value); } /** * Creates a rejected promise for a reason if the reason is not a promise. If * the provided reason is a promise, then it is returned as-is. * * @param mixed $reason Promise or reason. * * @return PromiseInterface * * @deprecated rejection_for will be removed in guzzlehttp/promises:2.0. Use Create::rejectionFor instead. */ function rejection_for($reason) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Create::rejectionFor($reason); } /** * Create an exception for a rejected promise value. * * @param mixed $reason * * @return \Exception|\Throwable * * @deprecated exception_for will be removed in guzzlehttp/promises:2.0. Use Create::exceptionFor instead. */ function exception_for($reason) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Create::exceptionFor($reason); } /** * Returns an iterator for the given value. * * @param mixed $value * * @return \Iterator * * @deprecated iter_for will be removed in guzzlehttp/promises:2.0. Use Create::iterFor instead. */ function iter_for($value) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Create::iterFor($value); } /** * Synchronously waits on a promise to resolve and returns an inspection state * array. * * Returns a state associative array containing a "state" key mapping to a * valid promise state. If the state of the promise is "fulfilled", the array * will contain a "value" key mapping to the fulfilled value of the promise. If * the promise is rejected, the array will contain a "reason" key mapping to * the rejection reason of the promise. * * @param PromiseInterface $promise Promise or value. * * @return array * * @deprecated inspect will be removed in guzzlehttp/promises:2.0. Use Utils::inspect instead. */ function inspect(\Google\Site_Kit_Dependencies\GuzzleHttp\Promise\PromiseInterface $promise) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::inspect($promise); } /** * Waits on all of the provided promises, but does not unwrap rejected promises * as thrown exception. * * Returns an array of inspection state arrays. * * @see inspect for the inspection state array format. * * @param PromiseInterface[] $promises Traversable of promises to wait upon. * * @return array * * @deprecated inspect will be removed in guzzlehttp/promises:2.0. Use Utils::inspectAll instead. */ function inspect_all($promises) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::inspectAll($promises); } /** * Waits on all of the provided promises and returns the fulfilled values. * * Returns an array that contains the value of each promise (in the same order * the promises were provided). An exception is thrown if any of the promises * are rejected. * * @param iterable $promises Iterable of PromiseInterface objects to wait on. * * @return array * * @throws \Exception on error * @throws \Throwable on error in PHP >=7 * * @deprecated unwrap will be removed in guzzlehttp/promises:2.0. Use Utils::unwrap instead. */ function unwrap($promises) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::unwrap($promises); } /** * Given an array of promises, return a promise that is fulfilled when all the * items in the array are fulfilled. * * The promise's fulfillment value is an array with fulfillment values at * respective positions to the original array. If any promise in the array * rejects, the returned promise is rejected with the rejection reason. * * @param mixed $promises Promises or values. * @param bool $recursive If true, resolves new promises that might have been added to the stack during its own resolution. * * @return PromiseInterface * * @deprecated all will be removed in guzzlehttp/promises:2.0. Use Utils::all instead. */ function all($promises, $recursive = \false) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::all($promises, $recursive); } /** * Initiate a competitive race between multiple promises or values (values will * become immediately fulfilled promises). * * When count amount of promises have been fulfilled, the returned promise is * fulfilled with an array that contains the fulfillment values of the winners * in order of resolution. * * This promise is rejected with a {@see AggregateException} if the number of * fulfilled promises is less than the desired $count. * * @param int $count Total number of promises. * @param mixed $promises Promises or values. * * @return PromiseInterface * * @deprecated some will be removed in guzzlehttp/promises:2.0. Use Utils::some instead. */ function some($count, $promises) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::some($count, $promises); } /** * Like some(), with 1 as count. However, if the promise fulfills, the * fulfillment value is not an array of 1 but the value directly. * * @param mixed $promises Promises or values. * * @return PromiseInterface * * @deprecated any will be removed in guzzlehttp/promises:2.0. Use Utils::any instead. */ function any($promises) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::any($promises); } /** * Returns a promise that is fulfilled when all of the provided promises have * been fulfilled or rejected. * * The returned promise is fulfilled with an array of inspection state arrays. * * @see inspect for the inspection state array format. * * @param mixed $promises Promises or values. * * @return PromiseInterface * * @deprecated settle will be removed in guzzlehttp/promises:2.0. Use Utils::settle instead. */ function settle($promises) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Utils::settle($promises); } /** * Given an iterator that yields promises or values, returns a promise that is * fulfilled with a null value when the iterator has been consumed or the * aggregate promise has been fulfilled or rejected. * * $onFulfilled is a function that accepts the fulfilled value, iterator index, * and the aggregate promise. The callback can invoke any necessary side * effects and choose to resolve or reject the aggregate if needed. * * $onRejected is a function that accepts the rejection reason, iterator index, * and the aggregate promise. The callback can invoke any necessary side * effects and choose to resolve or reject the aggregate if needed. * * @param mixed $iterable Iterator or array to iterate over. * @param callable $onFulfilled * @param callable $onRejected * * @return PromiseInterface * * @deprecated each will be removed in guzzlehttp/promises:2.0. Use Each::of instead. */ function each($iterable, callable $onFulfilled = null, callable $onRejected = null) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Each::of($iterable, $onFulfilled, $onRejected); } /** * Like each, but only allows a certain number of outstanding promises at any * given time. * * $concurrency may be an integer or a function that accepts the number of * pending promises and returns a numeric concurrency limit value to allow for * dynamic a concurrency size. * * @param mixed $iterable * @param int|callable $concurrency * @param callable $onFulfilled * @param callable $onRejected * * @return PromiseInterface * * @deprecated each_limit will be removed in guzzlehttp/promises:2.0. Use Each::ofLimit instead. */ function each_limit($iterable, $concurrency, callable $onFulfilled = null, callable $onRejected = null) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Each::ofLimit($iterable, $concurrency, $onFulfilled, $onRejected); } /** * Like each_limit, but ensures that no promise in the given $iterable argument * is rejected. If any promise is rejected, then the aggregate promise is * rejected with the encountered rejection. * * @param mixed $iterable * @param int|callable $concurrency * @param callable $onFulfilled * * @return PromiseInterface * * @deprecated each_limit_all will be removed in guzzlehttp/promises:2.0. Use Each::ofLimitAll instead. */ function each_limit_all($iterable, $concurrency, callable $onFulfilled = null) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Each::ofLimitAll($iterable, $concurrency, $onFulfilled); } /** * Returns true if a promise is fulfilled. * * @return bool * * @deprecated is_fulfilled will be removed in guzzlehttp/promises:2.0. Use Is::fulfilled instead. */ function is_fulfilled(\Google\Site_Kit_Dependencies\GuzzleHttp\Promise\PromiseInterface $promise) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Is::fulfilled($promise); } /** * Returns true if a promise is rejected. * * @return bool * * @deprecated is_rejected will be removed in guzzlehttp/promises:2.0. Use Is::rejected instead. */ function is_rejected(\Google\Site_Kit_Dependencies\GuzzleHttp\Promise\PromiseInterface $promise) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Is::rejected($promise); } /** * Returns true if a promise is fulfilled or rejected. * * @return bool * * @deprecated is_settled will be removed in guzzlehttp/promises:2.0. Use Is::settled instead. */ function is_settled(\Google\Site_Kit_Dependencies\GuzzleHttp\Promise\PromiseInterface $promise) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Is::settled($promise); } /** * Create a new coroutine. * * @see Coroutine * * @return PromiseInterface * * @deprecated coroutine will be removed in guzzlehttp/promises:2.0. Use Coroutine::of instead. */ function coroutine(callable $generatorFn) { return \Google\Site_Kit_Dependencies\GuzzleHttp\Promise\Coroutine::of($generatorFn); } 摄影 – 晒鱼
下一个内容

晒鱼

– 活色生香 Wonderful Life –

  • 主页
  • 美食
  • 美景
  • 美剧
  • 美人
  • 美物
  • 美趣
  • 美居
  • 蔷薇闲居即事
  • 论坛
  • 搜索
  • 注册
  • 登录
  • 文章列表

标签: 摄影

北美自驾游:加拿大十大拍摄点介绍

本文是又亨利斯撰写的。意在给摄影爱好者提供一些加拿大最好的拍摄点。亨利斯:亨利公司长期以来在加拿大的摄影行业中…

更多…

冬日的加拿大班夫国家公园,美到极致才是真正的人间仙境!

转自 多伦多地产 大家都知道,加拿大自然风光无限,处处是美景。其中最出名的自然是班夫国家公园(Banff Na…

更多…

暗夜保护区-寻找多伦多最亮的星星

多伦多附近三个观星绝佳地点!寻找夜空中最亮的星 原创: 居居女孩 加国旅游购物攻略 微信号dushi-deal…

更多…

这种另类二次构图法,让你废片一秒变「大片」!

原创 蔡汶川 摄影猫不斩 微信号 maobuzhan 功能介绍 这里是摄影猫不斩,我是汶川。 Halo,我是蔡…

更多…

五步教你如何调出电影感色调

摄影猫不斩 点击上面蓝字,关注后回复关键词【喵】   如何调出“电影感“色调…

更多…

拍私房照如何找到合适的摄影师拍私房

摄影猫不斩 微信号 maobuzhan 功能介绍 这里是摄影猫不斩,我是汶川。 点击上面蓝字,关注后回复关键词…

更多…

那些赞爆朋友圈的“黑金城市”居然是这样修出来的!

摄影猫不斩 点击上面蓝字,关注后回复关键词【喵】 送你一百本写真集下载链接哦 hello,大家好,我是汶川。前…

更多…

比春药更吸引女神的,是这个复古港风教程!

摄影猫不斩   微信号 maobuzhan 功能介绍 这里是摄影猫不斩,我是汶川。 点击上…

更多…

搜索

关键词

Canada DIY 做法 加拿大 小吃 攻略 菜谱 蔷薇闲居即事 食谱

近期文章

  • No-Download Or Demo Casino Slots
  • Ideal Online Casinos Approving Bitcoin: A Comprehensive Overview
  • HP OfficeJet Pro 8710 打印机无网络菜单 无法设置WiFi问题
  • 大疆域二不拍照问题
  • 2024年9月最新推出特斯拉推荐链接,让你省钱加元1300刀
  • 老式松下 RS-755S 开放式卷盘磁带录音机-开轮
  • AI推荐:5只值得购买并长期持有的加拿大股票
  • 2024 加拿大枫叶卡-永久居民 照片规格要求
  • 2024更新加拿大枫叶卡-如何在线付款?
  • 刘起-亚洲丝绸画
  • 购买HP Printer 惠普二手打印机注意事项
  • 出国旅行漫游必备数据神卡—Airalo 【推荐码:JIN9547】
  • 绿苹果型床头电子闹钟如何转换摄氏度与华氏度
  • 加拿大中文服务电话集锦
  • 在加拿大的热水炉是租赁好还是购买或买断好?

专栏
渔夫拍世界 蔷薇闲居即事
加拿大 班夫
美国 印度 古巴

最佳手机计划推荐--- Public Mobile 39元/月50G数据美加共用,加拿大及美国漫游电话无限时任打,国际短信彩信无限量任发
输入优惠码(推荐码): E8P2EP 你就能接收10元返还 点击这里

The most cost-effective Public mobile phone 50G data plan $39 Canada and USA
50 GB Data within Canada and the US at 5G Speed¹, Unlimited International Text and Picture Messaging, Voicemail & Call Display

The most cost-effective Public mobile 50G data plan $39
Public mobile promo refer code "E8P2EP" get $10 credit!,... 特斯拉推荐链接,让你省钱1300刀, 特斯拉库胖码, 特斯拉推荐码, 特斯拉推荐链接, 特斯拉折扣码, 特斯拉省钱代码, 特斯拉优惠码, 特斯拉优惠链接, 特斯拉省钱链接, 特斯拉优惠码

Airalo Referral code 推荐码 折扣码 优惠码 库胖码: JIN9547, 享3美元优惠.
Airalo coupon code Referral code: JIN9547. you can get $3 off.

推荐网站

dott.ca
89a.net
sayy.com
yeea.com
techome.ca
colormaple.com
Shop of Techome
Shop of Colormaple

PUBLICMOBILE手机计划推荐文章:

加拿大留学生手机通信公司、运营商选择指南及手机省钱计划推荐

加拿大最佳手机计划推荐用优惠码 ON9Q35,23元无限通话+全球短信+1GB 数据,Public mobile 还有很多好处,可使月费降为0元!

在加拿大的手机计划是如何做到月费$11元的

namelio.com NEW Customer coupon code “sayy” $1 off
domain search        domain pricing

sayy.com©2020 | DOTT.