Interface BuildProducer<T extends BuildItem>

  • Type Parameters:
    T - The type of build item to produce
    All Known Implementing Classes:
    BuildProducerImpl

    public interface BuildProducer<T extends BuildItem>
    An interface that can be injected to produce BuildItem instances This can be injected into either a field or method parameter. To produce a BuildItem simply call the produce(BuildItem) method with the instance.
    • Method Detail

      • produce

        void produce​(T item)