sharee.bike-App/SharedBusinessLogic/ViewModel/IPollingUpdateTaskManager.cs
2024-04-09 12:53:23 +02:00

20 lines
506 B
C#

using System.Threading.Tasks;
using ShareeBike.Settings;
namespace ShareeBike.ViewModel
{
public interface IPollingUpdateTaskManager
{
/// <summary>
/// Invoked when page is shown.
/// Actuates and awaits the first update process and starts a task which actuate the subsequent update tasks.
/// </summary>
Task StartAsync(PollingParameters p_oPolling = null);
/// <summary>
/// Invoked when pages is closed/ hidden.
/// Stops update process.
/// </summary>
Task StopAsync();
}
}