actionSendBroadcast
Function
Android
public fun actionSendBroadcast(action: String, componentName: ComponentName? = null): Action
Creates an Action that launches the BroadcastReceiver specified by the given action.
Parameters
| action | of the BroadcastReceiver to launch | 
| componentName | optional ComponentNameof the target BroadcastReceiver | 
Android
public fun actionSendBroadcast(intent: Intent): Action
Creates an Action that launches a BroadcastReceiver from the given Intent when triggered.
The intent should specify a component with Intent.setClass or Intent.setComponent.
Parameters
| intent | the Intentused to launch theBroadcastReceiver | 
Android
public fun actionSendBroadcast(componentName: ComponentName): Action
Creates an Action that launches the BroadcastReceiver specified by the given ComponentName.
Parameters
| componentName | component of the BroadcastReceiverto launch | 
Android
public fun <T : BroadcastReceiver> actionSendBroadcast(receiver: Class<T>): Action
Creates an Action that launches the specified BroadcastReceiver when triggered.
Parameters
| receiver | class of the BroadcastReceiverto launch | 
Android
public inline fun <reified T : BroadcastReceiver> actionSendBroadcast(): Action
Creates an Action that launches the specified BroadcastReceiver when triggered.
