Package manifold.api.host
Interface ITypeSystemListener
-
- All Known Implementing Classes:
AbstractTypeSystemListener,ResourceFileTypeManifold.CacheClearer
public interface ITypeSystemListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleannotifyEarly()Return true to hint you need to listen before other listeners, no guarantee of order.voidrefreshed()Fired when the type system is fully refreshedvoidrefreshedTypes(RefreshRequest request)Fired when an existing type is refreshed, i.e. there are potential changes
-
-
-
Method Detail
-
refreshedTypes
void refreshedTypes(RefreshRequest request)
Fired when an existing type is refreshed, i.e. there are potential changes
-
refreshed
void refreshed()
Fired when the type system is fully refreshed
-
notifyEarly
default boolean notifyEarly()
Return true to hint you need to listen before other listeners, no guarantee of order.
-
-