<GCKMediaQueueDelegate> 프로토콜
    
    
      
    
    
      
      컬렉션을 사용해 정리하기
    
    
      
      내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
    
  
    
  
      
    
  
  
  
  
  
  
    
    
    
GCKMediaQueue에서 비동기 알림을 수신하기 위한 위임 프로토콜입니다. 
- 다음 이후:
 - 4.3.4 
 
 
<NSObjectNSObject>를 상속합니다.
하나 이상의 변경사항이 대기열에 적용되려고 할 때 호출됩니다. 
- Parameters
 - 
  
  
 
 
 
대기열이 완전히 다시 로드되었을 때 호출됩니다. 
이전에 액세스한 모든 큐 항목은 잘못된 것으로 간주되어야 합니다.
- Parameters
 - 
  
  
 
 
 
  
  
      
        
          | - (void) mediaQueue:  | 
           | 
          (GCKMediaQueue *)  | 
          queue | 
         
        
          | didInsertItemsInRange: | 
           | 
          (NSRange)  | 
          range  | 
         
        
           | 
           | 
           |  | 
         
       
   | 
  
optional   | 
  
 
인접한 범위의 큐 항목이 큐에 삽입되었을 때 호출됩니다. 
- Parameters
 - 
  
    | queue | The queue.  | 
    | range | The range indicating the starting index and count of items inserted.  | 
  
   
 
 
  
  
      
        
          | - (void) mediaQueue:  | 
           | 
          (GCKMediaQueue *)  | 
          queue | 
         
        
          | didUpdateItemsAtIndexes: | 
           | 
          (NSArray< NSNumber * > *)  | 
          indexes  | 
         
        
           | 
           | 
           |  | 
         
       
   | 
  
optional   | 
  
 
대기열에서 하나 이상의 대기열 항목이 업데이트되면 호출됩니다. 
여기에는 이전에 액세스했지만 사용할 수 없는 항목이 검색되어 캐시에 배치된 경우와 이전에 캐시된 항목이 캐시에서 플러시된 경우가 포함됩니다.
- Parameters
 - 
  
    | queue | The queue.  | 
    | indexes | The ordered list of indexes of the items that have been updated.  | 
  
   
 
 
  
  
      
        
          | - (void) mediaQueue:  | 
           | 
          (GCKMediaQueue *)  | 
          queue | 
         
        
          | didRemoveItemsAtIndexes: | 
           | 
          (NSArray< NSNumber * > *)  | 
          indexes  | 
         
        
           | 
           | 
           |  | 
         
       
   | 
  
optional   | 
  
 
하나 이상의 대기열 항목이 대기열에서 제거되었을 때 호출됩니다. 
- Parameters
 - 
  
    | queue | The queue.  | 
    | indexes | The ordered list of indexes of the items that have been removed.  | 
  
   
 
 
 
  
  
  
 
  
    
    
    
  
  
  달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
  최종 업데이트: 2025-07-25(UTC)
  
  
  
    
      [[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-07-25(UTC)"],[],["The `GCKMediaQueueDelegate` protocol provides methods for asynchronous notifications about changes to a media queue. Key actions include: notifying when changes are imminent (`mediaQueueWillChange:`), when the queue is reloaded (`mediaQueueDidReloadItems:`), when items are inserted (`mediaQueue:didInsertItemsInRange:`), updated (`mediaQueue:didUpdateItemsAtIndexes:`), or removed (`mediaQueue:didRemoveItemsAtIndexes:`), and when changes are completed (`mediaQueueDidChange:`). Each method provides the affected queue and relevant details like ranges or indexes.\n"]]