AboutSupportDeveloper GuideVersion 1.3.1

Interface DelayStrategy

A window launch discovery strategy that waits for the given time period, checks if a process has a window and if so, captures that window and registers it with the Snap Server

interface DelayStrategy {
    delayMs: number;
    resizingBehavior?: ResizingBehavior;
    type: "delay";
}

Properties

delayMs: number

How to wait in milliseconds after process launch before looking for a window

resizingBehavior?: ResizingBehavior
type