Package com.luciad.models.features
Interface IFeatureQueryCallback
public interface IFeatureQueryCallback
A callback class that is called with the results of a query.
See IFeatureModel#query.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanhandleFeature(Feature feature) Implement this method to handle a feature that is returned by theIFeatureModel#querymethod.voidhandleTermination(FeatureQueryTermination termination) Implement this method to handle the termination of a feature query.
-
Method Details
-
handleFeature
Implement this method to handle a feature that is returned by theIFeatureModel#querymethod.- Parameters:
feature- the feature to handle.- Returns:
- false to indicate that the query can stop.
-
handleTermination
Implement this method to handle the termination of a feature query.- Note
- During this
query, you should not use this callback anymore after callinghandleTermination.
- Parameters:
termination- the termination.- Since:
- 2026.0
-