
net.cassite.pure.aop.DestroyWeaver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pure.ioc Show documentation
Show all versions of pure.ioc Show documentation
Lightweight type and annotation based dependency injection framework
The newest version!
package net.cassite.pure.aop;
/**
* weaver that destroys target
*/
public interface DestroyWeaver extends Weaver {
@Override
default void doBefore(AOPPoint point) {
}
@Override
default void doAfter(AOPPoint point) {
}
@Override
default void doException(AOPPoint point) throws Throwable {
throw point.exception();
}
@Override
void doDestroy(T target);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy