pshomov / reducto

A port of Redux to .NET

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The "DispatcherDelegate" in Droid has a delay very important.

HugoTruffe opened this issue · comments

The “DispatcherDelegate” in Android has a delay very important in comparative with iOS
.

Description:
In iOS a DispatcherDelegate has a delay between 5 and 8 miliseconds for dispatch, but the same dispatch running in droid has a delay of 200 to 400 milseconds

Code of example

public static async Task Send(DispatcherDelegate dispatch, Store.GetStateDelegate getStateDelegate) 
{ dispatch(new ClearContactAction());
 dispatch(new ClearSelectedStateAction());
 dispatch(new ClearSelectedCityAction());
 }

Data:
Xamarin.Forms = 2.3.3.175
Android version >= API 21

I will send the example by email

Hi @HugoTruffe,

Thank you for the report, I will try to reproduce it.
Can you please compile the example with newest Xamarin release (stable or beta, preferably both and see if there is a difference) and send me the info about the Xamarin release that you are using from the menu "Xamarin Studio Community" -> "About Xamarin Studio Community" -> "Show Details" -> "Copy Information" and paste it here. Looks like this for me
screen shot 2017-01-18 at 16 16 20

Best regards,

Petar