Hi all. I need to call a function inside ny app after a fixed delay. I thought that Tizen whould have something like a simple "timer" but no way!
Tizen SDK (I studied the wearable one) has the "alarm" something like an OS primitive that manage all the sheduled tasks (probably more like the Unix/Linux "at").
But you can't call an internal function, only "an operation recognized by the OS" like "open this link" or "open this image in editing mode". Then, is the OS that link the request to one of the installed providers (apps that can execute the request).
So I entered the wonderful world of ApplicationControl and ApplicationService, but I absolutely can't understand how they work! I found only a couple of example, none of them about the wearable SDK. The best is here (developer.tizen.org/documentation/articles/task-scheduling) but focuses only on ApplicationService that seems to be un-ported in the wearable versione of the SDK.
Nothing about using ApplicationControl. Nothing about what I supposed it was a really simple task: call a function with a delay of 5 minutes ...
Could someone please help me? Thank you.