'HowTo merge two VertX RowSets

I have two RowSets from different Databases.

RowSet<Row> db1Rows;
RowSet<Row> db2Rows;

Is it possible to merge, sort them and return the merged RowSet?



Solution 1:[1]

You could try converting them to JsonObjects - and then merge the two

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Asad Awadia