sharee.bike-App/TINKLib/ViewModel/IdlePollingUpdateTaskManager.cs

21 lines
645 B
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00
using System.Threading.Tasks;
using TINK.Settings;
2021-05-13 20:03:07 +02:00
namespace TINK.ViewModel
{
2022-09-06 16:08:19 +02:00
/// <summary>Polling update task manager to handle calls if no update has to be performed.</summary>
/// <remarks> Object MapPage calls OnDisappearing for some reasons after first start after installation before OnAppearing. This requires a IdlePollingUpdateManager to exist.</remarks>
public class IdlePollingUpdateTaskManager : IPollingUpdateTaskManager
{
public async Task StartUpdateAyncPeridically(PollingParameters p_oPeriode)
{
await Task.CompletedTask;
}
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
public async Task StopUpdatePeridically()
{
await Task.CompletedTask;
}
}
2021-05-13 20:03:07 +02:00
}