# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/rrqbwda
Android 開發中的線程模型和解決思路**
在 Android 開發中,線程扮演着重要的角色,雖然隨着協程技術的普及,純應用層開發中,線程的使用已經不是問題,但是對於 JNI 開發,至少有一半的崩潰是線程相關問題引起的。所以本文將用實戰的方式,逐步向讀者揭示 JNI 開發中使用線程可能遇到的問題,並提供自己的解決思路。一個概念的引入是爲了解決某些新問題,「線程就是爲了解決多任務並行」而引入的概念。但是引入新概念必定也會引入新的問題,線程 ⌘ Read more