PowerToys/Wox.Plugin/Features/IInstantQuery.cs

11 lines
422 B
C#
Raw Normal View History

2015-02-05 22:20:42 +08:00
namespace Wox.Plugin.Features
{
/// <summary>
/// Represent plugin query will be executed in UI thread directly. Don't do long-running operation in Query method if you implement this interface
/// <remarks>This will improve the performance of instant search like websearch or cmd plugin</remarks>
/// </summary>
2015-02-05 22:20:42 +08:00
public interface IInstantQuery
{
bool IsInstantQuery(string query);
}
}