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 produceBuildIteminstances This can be injected into either a field or method parameter. To produce aBuildItemsimply call theproduce(BuildItem)method with the instance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidproduce(T item)
-
-
-
Method Detail
-
produce
void produce(T item)
-
-