using TINK.Settings; using System.Threading.Tasks; namespace TINK.ViewModel { /// Polling update task manager to handle calls if no update has to be performed. /// Object MapPage calls OnDisappearing for some reasons after first start after installation before OnAppearing. This requires a IdlePollingUpdateManager to exist. public class IdlePollingUpdateTaskManager : IPollingUpdateTaskManager { public async Task StartUpdateAyncPeridically(PollingParameters p_oPeriode) { await Task.CompletedTask; } public async Task StopUpdatePeridically() { await Task.CompletedTask; } } }