public ResultStorage<T>
Stores and provides access to the scanning result of the given type by ResultId
void putResult(@NotNull
java.lang.String resultId,
T result)
Puts the given result to the storage on the given id
resultId - id to store the result onresult - result to store@Nullable
T getResult(@NotNull
java.lang.String resultId)
Returns the result from the storage according to the given id
resultId - id to return the result fromvoid removeResult(@NotNull
java.lang.String resultId)
Removes the result from the storage according to the given id
resultId - id to remove the result onvoid clear()
Removes all the results from the storage