Is it possible to have and pass into a function a method which exists inside a module?
I have shared/reused function in a module, and would like to pass to a function. For example:
_timer = new Timer.Timer();
_timer.start(method(:MyModule.update), 1000, true);
When I've tried this, I get symbol not found on 'update'
Thanks
Chris