1 2 3 4 5 6 7 8 9 10
namespace jive.utility { public interface Callback : Command { } public interface Callback<in T> : Command<T> { } }