Package com.jayway.jsonpath
Interface EvaluationListener
-
- All Known Implementing Classes:
JsonContext.LimitingEvaluationListener
public interface EvaluationListener
A listener that can be registered on aConfiguration
that is notified when a result is added to the result of this path evaluation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
EvaluationListener.EvaluationContinuation
static interface
EvaluationListener.FoundResult
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EvaluationListener.EvaluationContinuation
resultFound(EvaluationListener.FoundResult found)
Callback invoked when result is found
-
-
-
Method Detail
-
resultFound
EvaluationListener.EvaluationContinuation resultFound(EvaluationListener.FoundResult found)
Callback invoked when result is found- Parameters:
found
- the found result- Returns:
- continuation instruction
-
-