Interface AiServiceCustomizer<T>
- Type Parameters:
T
- The type of the service
- All Known Implementing Classes:
AiService.NoOpCustomizer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Interface that allows customization the creation of
AiServices
.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
customize
(@NonNull AiServiceCreationContext<T> creationContext) Call back invocation that receives theAiServiceCreationContext
.
-
Method Details
-
customize
Call back invocation that receives theAiServiceCreationContext
.The context allows customizing the builder and analysing the metadata associated with the service.
- Parameters:
creationContext
- The creation context, nevernull
-