Open
Description
No need to poll when the module is hidden. This functionality is controlled by two functions in the main module, according to:
-
suspend()
- When a module is hidden (using the module.hide() method), the suspend() method will be called. By subclassing this method you can perform tasks like halting the update timers. -
resume()
- When a module is requested to be shown (using the module.show() method), the resume() method will be called. By subclassing this method you can perform tasks restarting the update timers.
We need to implement this functionality.