Убраны синхронные методы
This commit is contained in:
27
Lattice.Core.DragDrop/Constants/DragDropConstants.cs
Normal file
27
Lattice.Core.DragDrop/Constants/DragDropConstants.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
namespace Lattice.Core.DragDrop.Constants;
|
||||
|
||||
/// <summary>
|
||||
/// Константы для системы перетаскивания.
|
||||
/// </summary>
|
||||
public static class DragDropConstants
|
||||
{
|
||||
/// <summary>
|
||||
/// Порог начала перетаскивания по умолчанию (пикселей).
|
||||
/// </summary>
|
||||
public const double DefaultDragThreshold = 3.0;
|
||||
|
||||
/// <summary>
|
||||
/// Интервал очистки по умолчанию (миллисекунды).
|
||||
/// </summary>
|
||||
public const int DefaultCleanupInterval = 60000;
|
||||
|
||||
/// <summary>
|
||||
/// Таймаут асинхронных операций по умолчанию (миллисекунды).
|
||||
/// </summary>
|
||||
public const int DefaultAsyncTimeout = 5000;
|
||||
|
||||
/// <summary>
|
||||
/// Время жизни неиспользуемых целей (минуты).
|
||||
/// </summary>
|
||||
public const int TargetLifetimeMinutes = 10;
|
||||
}
|
||||
Reference in New Issue
Block a user