public class SimpleInpaceExecutingScheduler()

in EnvDTE.Client/SimpleInpaceExecutingScheduler.cs [11:28]


public class SimpleInpaceExecutingScheduler(ILog logger) : IScheduler
{
    public void Queue(Action action)
    {
        try
        {
            action();
        }
        catch (Exception ex)
        {
            logger.Error(ex);
        }
    }

    public bool IsActive => true;

    public bool OutOfOrderExecution => false;
}