public XamarinDispatcherScheduler(IPlatformImplementation platform)
 {
     _platform = platform;
 }
 protected AbstractThreadScheduler(IPlatformImplementation impl)
 {
     _impl = impl;
 }
 public TimeslicedThreadScheduler(IPlatformImplementation impl)
     : base(impl)
 {
     _timer = new Timer();
 }