Support getAll(), keySet(), entrySet() and values() to perform operations like
rxIMap.values().subscribe(product -> System.out.println("Got: " + product));
or
rxIMap.values()
.buffer(10)
.subscribe(productList -> System.out.println("Got: " + productList));