Fix UI issues when using web search plugin with suggestions

This commit is contained in:
qianlifeng
2015-02-28 18:20:06 +08:00
parent 72988cc6fb
commit 45f60ae646
7 changed files with 83 additions and 21 deletions

View File

@@ -1,5 +1,9 @@
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);