public IDictionary<string, object> Run(IDictionary<string, object> context)
        {
            if (context.GetResponseTimeinMilliSeconds() > _milliSeconds) 
                context.SetError("Request took longer than " + _seconds + " seconds to respond.");

            return context;
        }