Exemplo n.º 1
0
        public BuilderQueue(IEnumerable <Type> workers, BuildContext context)
        {
            var builders = workers.Select(w => new Builder(w, context));

            this.QueueBuilders(builders, context, Nil.S <Type>());
        }