in order-book-pipeline/src/main/java/com/google/cloud/dataflow/orderbook/MarketDepthToTableRowConverter.java [56:62]
private static List<TableRow> getPriceQuantityRepeatedRows(List<PriceQuantity> priceQuantities) {
List<TableRow> result = new ArrayList<>();
for(PriceQuantity priceQuantity : priceQuantities) {
result.add(priceQuantityAsTableRow(priceQuantity));
}
return result;
}