From 17fdde66d94155fc62a034fa6658995bef6fd6e5 Mon Sep 17 00:00:00 2001 From: Jason Smith Date: Tue, 22 Mar 2016 13:02:25 -0700 Subject: Initial import --- Xamarin.Forms.Core/ITimer.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Xamarin.Forms.Core/ITimer.cs (limited to 'Xamarin.Forms.Core/ITimer.cs') diff --git a/Xamarin.Forms.Core/ITimer.cs b/Xamarin.Forms.Core/ITimer.cs new file mode 100644 index 00000000..ba867dba --- /dev/null +++ b/Xamarin.Forms.Core/ITimer.cs @@ -0,0 +1,13 @@ +using System; + +namespace Xamarin.Forms +{ + //this will go once Timer is included in Pcl profiles + internal interface ITimer + { + void Change(int dueTime, int period); + void Change(long dueTime, long period); + void Change(TimeSpan dueTime, TimeSpan period); + void Change(uint dueTime, uint period); + } +} \ No newline at end of file -- cgit v1.2.3