Get all of the tuples from a given component on the default stream. @param results the results of running a completed topology @param componentId the id of the component to look at @return a list of the tuple values.
(Map<String, List<FixedTuple>> results, String componentId)
| 496 | * @return a list of the tuple values. |
| 497 | */ |
| 498 | public static List<List<Object>> readTuples(Map<String, List<FixedTuple>> results, String componentId) { |
| 499 | return readTuples(results, componentId, Utils.DEFAULT_STREAM_ID); |
| 500 | } |
| 501 | |
| 502 | /** |
| 503 | * Get all of the tuples from a given component on a given stream. |
no test coverage detected