You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 1, 2024. It is now read-only.
Probably u dont wait enough after hit btn(it's took like 2 min to stop all exist threads and start atleast first new one), I just test on other pc with real device I see that new threads are created. That what I have in App.cs:
public App()
{
InitializeComponent();
var button = new Button()
{
Text = "Save prop",
HorizontalOptions = LayoutOptions.Center,
VerticalOptions = LayoutOptions.Center
};
button.Clicked += Button_Clicked;
MainPage = new ContentPage()
{
Content = button
};
}
private void Button_Clicked(object sender, EventArgs e)
{
Current.Properties["PROP_KEY"] = "PROP_VALUE";
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Description
After saving properties, new Threads r created nonstop.
For example, in logs u can see:
Steps to Reproduce
For example:
Expected Behavior
Create thread pools as much as it need
After finish work(save property), new threads should not be created.
Actual Behavior
After save property, if u w8 for few minutes, u can see that new Threads are started/finished in infinity loop.
Basic Information
The text was updated successfully, but these errors were encountered: