GCKRequest 클래스
비동기식 요청을 추적하는 객체입니다.
위임 프로토콜은 GCKRequestDelegate을 참고하세요.
- Since
- 3.0
NSObject를 상속합니다.
요청을 취소합니다.
요청을 취소해도 수신자에 의해 요청이 완료되지 않을 수 있습니다. 이 경우 발신자가 요청을 추적하지 않게 됩니다.
- (void) failWithError: |
|
(GCKError *) |
error |
|
요청이 실패하고 오류가 발생해 대리인에게 알립니다.
이 메서드는 애플리케이션에서 GCKRequest::requestWithID: 팩토리 메서드를 사용하여 생성한 GCKRequest 객체에서만 호출할 수 있습니다. 프레임워크 자체에서 만든 GCKRequest 객체에서 이 메서드를 호출하면 예외가 발생합니다.
- Parameters
-
error | The error describing the failure. |
- Since
- 3.4
- (void) abortWithReason: |
|
(GCKRequestAbortReason) |
reason |
|
이유와 함께 요청을 취소하고 그에 따라 대리인에게 알립니다.
이 메서드는 애플리케이션에서 GCKRequest::requestWithID: 팩토리 메서드를 사용하여 생성한 GCKRequest 객체에서만 호출할 수 있습니다. 프레임워크 자체에서 만든 GCKRequest 객체에서 이 메서드를 호출하면 예외가 발생합니다.
- Parameters
-
reason | The reason for the abort. |
- Since
- 3.4
요청 상태에 관한 알림을 수신하는 대리자입니다.
- (GCKRequestID) requestID |
|
readnonatomicassign |
요청 실패 원인(있는 경우) 또는 오류(nil
)
요청이 현재 진행 중인지 여부를 나타내는 플래그입니다.
외부 요청, 즉 프레임워크 자체가 아닌 애플리케이션에서 만든 요청인지 여부를 나타내는 플래그입니다.
- Since
- 3.4
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2022-12-06(UTC)
[null,null,["최종 업데이트: 2022-12-06(UTC)"],[[["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."]]],[]]