mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
11 lines
422 B
C#
11 lines
422 B
C#
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>
|
|
public interface IInstantQuery
|
|
{
|
|
bool IsInstantQuery(string query);
|
|
}
|
|
} |