benez
benez
The `ScheduledDataLoaderService` can be configured to schedule a `TimerTask` to load the `LoadableResource` and trigger the `DefaultLoaderListener`. These listeners will parse the data from the resource and update their internal...
During startup of the application, the resources for exchange rates might be loaded until 3 times. 1. The constructor of `ECBAbstractRateProvider` calls `LoaderService.loadDataAsync(..)` and `IMFHistoricRateProvider`, `IMFRateProvider` do call `LoaderService.loadData(..)`. 2....
The `org.javamoney.moneta.spi.loader.ScheduledDataLoaderService` can be configured by entries in in the 'javamoney.properties' files. Some of these properties are: 'period' and 'delay' used for `timer.scheduleAtFixedRate(createTimerTask(load), delayMS, periodMS);` 'at' used for `timer.schedule(createTimerTask(load), date.getTime(),...