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