Interface AbstractStateSystemTimeGraphView.IQueryHandler
- Enclosing class:
- AbstractStateSystemTimeGraphView
public static interface AbstractStateSystemTimeGraphView.IQueryHandler
Handler for state system queries
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandle(@NonNull List<List<ITmfStateInterval>> fullStates, @Nullable List<ITmfStateInterval> prevFullState) Handle a full or partial list of full states.
-
Method Details
-
handle
void handle(@NonNull List<List<ITmfStateInterval>> fullStates, @Nullable List<ITmfStateInterval> prevFullState) Handle a full or partial list of full states. This can be called many times for the same query if the query result is split, in which case the previous full state is null only the first time it is called, and set to the last full state of the previous call from then on.- Parameters:
fullStates- the list of full statesprevFullState- the previous full state, or null
-