<notify listener="something" method="getImagesA" resultArg="images"/>
<view-page name="displayImages" contentArg="imagesA"/>
<notify listener="something" method="getImagesB" resultArg="images"/>
<view-page name="displayImages" contentArg="imagesB"/>
Commands are run in order, so you can just place the results of the
notify calls in the same resultArg and then render the view immediately
after. Then run the another notify and then render with the same view.
.pjf