override fun run()

in app/src/main/java/com/amazon/ivs/broadcast/ui/fragments/main/MainViewModel.kt [90:103]


        override fun run() {
            try {
                launchIO {
                    onDeviceHealthUpdate.postConsumable(
                        DeviceHealth(
                            context.getUsedMemory(),
                            context.getCpuTemperature()
                        )
                    )
                }
            } finally {
                deviceHealthHandler.postDelayed(this, 1000)
            }
        }