// p為佇列中頭部msg
if (p == null || when == 0 || when < p.when) {
// New head, wake up the event queue if blocked.
// 把當前 msg 新增到連結串列的第一個
msg.next = p;
mMessages = msg;
needWake = mBlocked;
} else {
// 不是第一次新增資料,並且 msg 的時間 大於 mMessages(頭指標) 的時間
// Inserted within the middle of the queue. Usually we don't have to wake
// up the event queue unless there is a barrier at the head of the queue
// and the message is the earliest asynchronous message in the queue.
needWake = mBlocked && p.target == null && msg.isAsynchronous();
Message prev;
for (;;) {
// 不斷的遍歷找到合適的位置
prev = p;
p = p.next;
if (p == null || when < p.when) { // 根據執行時間判斷應該插到哪個位置
break;
}
if (needWake && p.isAsynchronous()) {
needWake = false;
}
}
// 把當前 msg 插入到列表中
msg.next = p; // invariant: p == prev.next
prev.next = msg;
}
複製程式碼