Hi,
I saw that in the new SDK Programmer’s guide :
Fixed Delay vs. Fixed Rate
In my code, i have this :
getDriverContext().getSharedExecutionManager().register(eICTDriver.class.getSimpleName(),
“eICTDriverUpdater”, new Runnable() {
@Override
public void run() {
// Déclaration de la fonction de mise à jour
updateConditions();
}
}, Integer.valueOf(10), TimeUnit.SECONDS);
But I don’t know where to specify I want to use the fixed rate.
Can anybody help ?
Thanks