Currently we have sequential (one at a time) and parallel (all pages in one big blast) paging implementations. Sequential does not really take advantage of our infrastructure, parallel pounds the services resulting in timeouts. I need a new paging implementation that allows the following:
Specifies the number of parallel requests allowed. (e.g. 2 or 3 should be sufficient)
If a page request fails or times-out, will retry the request up to the specified retry count.
Currently we have sequential (one at a time) and parallel (all pages in one big blast) paging implementations. Sequential does not really take advantage of our infrastructure, parallel pounds the services resulting in timeouts. I need a new paging implementation that allows the following: