Package io.avaje.inject.core
Interface BeanLifecycle
-
public interface BeanLifecycle
Lifecycle of beans via@PostConstructand@PreDestroy.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpostConstruct()Fire post construction.voidpreDestroy()Fire on shutdown or close of the bean context.
-
-
-
Method Detail
-
postConstruct
void postConstruct()
Fire post construction.
-
preDestroy
void preDestroy()
Fire on shutdown or close of the bean context.
-
-