Checking the guide of architecture in Android, I have a question about this sentence: "*Types are responsible for their concurrency policy. If a type is performing long-running blocking work, it should be responsible for moving that computation to the right thread. That particular type knows the type of computation that it is doing and in which thread it should be executed. Types should be main-safe, meaning they're safe to call from the main thread without blocking it.*" Does anyone know what they mean with Types?
not kotlin but kotlin colored 2