sharee.bike-App/TINKLib/ViewModel/IPollingUpdateTaskManager.cs
2021-05-13 20:03:07 +02:00

21 lines
592 B
C#

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