FunkyMuse
03/22/2021, 10:35 PMPaul Woitaschek
03/25/2021, 8:06 PMPaul Woitaschek
03/25/2021, 8:07 PMIn an Android world, Singleton doesn’t really exist, it’s a lie.Unless you're really picky and consider multi process, this:
enum class RPC { Instance }
And this
object Singleton
Are really singletonsPaul Woitaschek
03/25/2021, 8:10 PM, but not really, once process death restoration happens, the objects annotated with @jsingle are re-created again.If a process dies, everything dies. Who would expect to have the same objects after you reboot the system?
FunkyMuse
03/29/2021, 9:24 PMPaul Woitaschek
03/30/2021, 6:34 AM