namespace OpenTap { /// Implements a check if an invocation can be skipped. This should only be implemented if it can be done very quickly. /// /// interface ISkippableInvokable { public bool Skip(T a, T2 b); } }