// // NosThreadSynchronizerOptions.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace NosSmooth.LocalBinding.Options; /// /// Options for . /// public class NosThreadSynchronizerOptions { /// /// Gets or sets the number of max tasks per one iteration. /// public int MaxTasksPerIteration { get; set; } = 10; }