我想通过跟踪分页链接并使用改造和JavaRx来废弃网站的结果。
这是个主意:
service.scrap -> Response
transform(Response) -> Results X paginationToken //somehow store the result
service.scrap(paginationToken) // Repeat till end of pagination
flatMap // List of Result List into one list results
subscribe //do something with the complete list of results
问题: 如何将结果发送给你自己转换它们 并在达到某种条件之前执行此操作,然后获取完整的结果列表?
谢谢!