출처: Pending Intent
A description of intent and target action to perform with it.
Pending Intent는 인텐트와 인텐트와 함께 수행하는 타겟 액션에 대한 서술이다A PendingIntent itself is simply a reference to a token maintained by the system describing the original data used to retrieve it
Pending Intent는 시스템이 유지하는 토큰에 대한 참조이다. 토큰은 데이터를 복구하는데 사용되는 원본데이터를 의미한다또한, PendingIntent는 이름과는 다르게 Intent를 상속하여 구현된 것이 아니라 Object를 상속하여 구현되었다.
Intent내부에 putExtra를 이용하여 값을 다른 것을 넣는다고하여 여러 개의 pending intent가 생성되는 것이 아니다.
다양한 pending intent를 만들기 위해서는 intent.filterEquals(other intent)가 false 값을 반환하거나, different request code integer를 사용한다.