Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 664 Bytes

File metadata and controls

23 lines (15 loc) · 664 Bytes

IPlugin interface

Synchronous Plugin Model for Flow Launcher

If the Querying or Init method requires high IO transmission or performing CPU intense jobs (performing better with cancellation), please try the IAsyncPlugin interface

public interface IPlugin : IAsyncPlugin

Members

name description
Init(…) Initialize plugin
Query(…) Querying when user's search changes

See Also