Returns true if the message is asynchronous. Asynchronous messages represent interrupts or events that do not require global ordering with represent to synchronous messages. Asynchronous messages are not subject to the synchronization barriers introduced by {@link MessageQueue#enqueueSyncBarrier(l
()
| 376 | * @hide |
| 377 | */ |
| 378 | public boolean isAsynchronous() { |
| 379 | return (flags & FLAG_ASYNCHRONOUS) != 0; |
| 380 | } |
| 381 | |
| 382 | /** |
| 383 | * Sets whether the message is asynchronous. |
no outgoing calls
no test coverage detected