Skip to content

Instantly share code, notes, and snippets.

@ininmm
Created September 19, 2019 00:30
Show Gist options
  • Save ininmm/fe36a39e914311f36f671fdf8dc9567e to your computer and use it in GitHub Desktop.
Save ininmm/fe36a39e914311f36f671fdf8dc9567e to your computer and use it in GitHub Desktop.
Sample CoroutineScope
class MainActivity : AppCompatActivity(), CoroutineScope {
override val coroutineContext: CoroutineContext
get() = job
val job = Job() // 默認使用預設 thread
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment