8.2.1.4 Stopping The Process Of Sending Of An Ordered Broadcast Intent A BroadcastReceiver can stop the process of sending an ordered broadcast Intent by calling the public final void abortBroadcast() method. Any BroadcastReceivers of the same priority that have not already received the Intent and all those with a lower priority than the current BroacastReceiver will not receive the Intent. Using this method when the onReceive() method has not been invoked on an ordered broadcast Intent will result in a RuntimeException, except in one situation