GCKRequest 类
用于跟踪异步请求的对象。
如需了解委托协议,请参阅 GCKRequestDelegate。
- 辛塞
- 3.0
此类继承 NSObject。
取消请求。
取消请求并不能保证该请求不会在接收者中完成,而只是导致发送者停止跟踪请求。
- (void) failWithError: |
|
(GCKError *) |
error |
|
使请求失败并返回错误,并相应地通知委托。
此方法只能由应用使用 GCKRequest::requestWithID: 工厂方法构造的 GCKRequest 对象调用。对由框架本身创建的 GCKRequest 对象调用此方法将引发异常。
- Parameters
-
error | The error describing the failure. |
- 辛塞
- 3.4
- (void) abortWithReason: |
|
(GCKRequestAbortReason) |
reason |
|
使用原因中止请求,并相应地通知委托。
此方法只能由应用使用 GCKRequest::requestWithID: 工厂方法构造的 GCKRequest 对象调用。对由框架本身创建的 GCKRequest 对象调用此方法将引发异常。
- Parameters
-
reason | The reason for the abort. |
- 辛塞
- 3.4
- (GCKRequestID) requestID |
|
readnonatomicassign |
一个标记,指示这是外部请求,即应用而不是框架本身创建的请求。
- 辛塞
- 3.4
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2022-12-06。
[null,null,["最后更新时间 (UTC):2022-12-06。"],[[["The `GCKRequest` class is an object used for tracking asynchronous requests in Google Cast."],["This class provides methods to manage the lifecycle of a request such as canceling, completing, failing, or aborting it."],["Applications can create and manage their own `GCKRequest` objects using the provided factory and management methods."],["A delegate can be assigned to receive notifications about the status and outcome of requests."],["Each request has properties like a unique ID, an optional error object, and flags to indicate progress and origin."]]],[]]