public static void Reset <T>(this IProcessorContext context)
 {
     context.Reset <T>(ProcessorContextKeys.Default);
 }
 public static void Reset <T>(this IProcessorContext context, string key)
 {
     context.Reset(typeof(T), key);
 }