using System.Threading; using ServiceStack.DesignPatterns.Command; namespace ServiceStack.Common.Support { public class CommandExecsHandler : ICommandExec { private readonly ICommandExec command; private readonly AutoResetEvent waitHandle; public CommandExecsHandler(ICommandExec command, AutoResetEvent waitHandle) { this.command = command; this.waitHandle = waitHandle; } public bool Execute() { command.Execute(); waitHandle.Set(); return true; } } }