Interface InternalComponentInvalidationEventHub
-
- All Superinterfaces:
InvalidationEventHub
- All Known Implementing Classes:
InternalComponentInvalidationEventHubImpl
public interface InternalComponentInvalidationEventHub extends InvalidationEventHub
Split-out implementation ofInvalidationEventHub
that separates it fromComponentInstantiatorSource
. This was necessary due to some refactoring that madeComponentClassResolver
and ComponentInstantiatorSource mutually dependent.- Since:
- 5.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
classInControlledPackageHasChanged()
Invoked when theComponentInstantiatorSource
notices that a class file within any of the controlled packages has changed.-
Methods inherited from interface org.apache.tapestry5.commons.services.InvalidationEventHub
addInvalidationCallback, addInvalidationListener, clearOnInvalidation
-
-
-
-
Method Detail
-
classInControlledPackageHasChanged
void classInControlledPackageHasChanged()
Invoked when theComponentInstantiatorSource
notices that a class file within any of the controlled packages has changed. Fires theInvalidationListener.objectWasInvalidated()
notification.
-
-