public class AmazonSetListStatus
extends java.lang.Object
AmazonCustomerListReceiver.setCustomerList(int, int, List)
,
AmazonEntitlementReceiver.setContentEntitlements(int, List)
, and
AmazonEntitlementReceiver.setSubscriptions(int, List)
. Use these
functions to set large data lists which cannot fit in memory. This works well with receiving paged data from your server
backend.
ITEMS_PENDING
should be used if one or more calls will be made to the set list function. COMPLETE
should
be used in the final message once all data has been shared. For sending a small list simply use the COMPLETE
tag,
you do not need to use ITEMS_PENDING
if you are not calling the set list function multiple times.
Modifier and Type | Field and Description |
---|---|
static int |
COMPLETE
Indicates the list passed is the end of items to be passed and no more will be shared.
|
static int |
ITEMS_PENDING
Indicates the list passed is incomplete and more items are expected.
|
public static final int ITEMS_PENDING
public static final int COMPLETE