interface IActorSourceWatchOutput {
    events: ISourceWatchEventEmitter;
    start: () => void;
    stop: () => void;
}

Hierarchy

  • IActorOutput
    • IActorSourceWatchOutput

Properties

Properties

An event emitter that emits 'update' and 'delete' events.

start: () => void

A function to start watching the source.

stop: () => void

A function to stop watching the source.