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