An intent extra that contains multiple appWidgetIds.
The value will be an int array that can be retrieved like this:
java Example
Bundle extras = intent.getExtras(); int[] appWidgetIds = extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS);
[Android Documentation]