MCPcopy Create free account
hub / github.com/LineageOS/android_frameworks_base / isAsynchronous

Method isAsynchronous

core/java/android/os/Message.java:378–380  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

376 * @hide
377 */
378 public boolean isAsynchronous() {
379 return (flags & FLAG_ASYNCHRONOUS) != 0;
380 }
381
382 /**
383 * Sets whether the message is asynchronous.

Callers 2

nextMethod · 0.95
enqueueMessageMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected