# Print output for @column tags ?> PendingIntent.OnFinished - Android SDK | Android Developers

Most visited

Recently visited

PendingIntent.OnFinished

public static interface PendingIntent.OnFinished

android.app.PendingIntent.OnFinished


Callback interface for discovering when a send operation has completed. Primarily for use with a PendingIntent that is performing a broadcast, this provides the same information as calling Context#sendOrderedBroadcast(Intent, String, android.content.BroadcastReceiver, Handler, int, String, Bundle) with a final BroadcastReceiver.

Summary

Public methods

abstract void onSendFinished(PendingIntent pendingIntent, Intent intent, int resultCode, String resultData, Bundle resultExtras)

Called when a send operation as completed.

Public methods

onSendFinished

public abstract void onSendFinished (PendingIntent pendingIntent, 
                Intent intent, 
                int resultCode, 
                String resultData, 
                Bundle resultExtras)

Called when a send operation as completed.

Parameters
pendingIntent PendingIntent: The PendingIntent this operation was sent through.

intent Intent: The original Intent that was sent.

resultCode int: The final result code determined by the send.

resultData String: The final data collected by a broadcast.

resultExtras Bundle: The final extras collected by a broadcast.