1 2 3 4 5 6 7
namespace gorilla.infrastructure.threading { public interface ApplicationThread { T provide_slot_for<T>() where T : class, new(); } }