Table of Contents

Method Stop

Namespace
LMKit.Agents.Skills
Assembly
LM-Kit.NET.dll

Stop()

Stops monitoring for file changes.

public void Stop()

Examples

Stopping the watcher:

var watcher = new SkillWatcher(registry, "./skills");
watcher.Start();
// ... do work ...
watcher.Stop();
Console.WriteLine("Watcher stopped");