mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 02:26:29 +01:00
20 lines
645 B
C#
20 lines
645 B
C#
using System.Threading.Tasks;
|
|
using TINK.Settings;
|
|
|
|
namespace TINK.ViewModel
|
|
{
|
|
/// <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;
|
|
}
|
|
|
|
public async Task StopUpdatePeridically()
|
|
{
|
|
await Task.CompletedTask;
|
|
}
|
|
}
|
|
}
|