robotoworks / mechanoid

Eclipse plugin providing a set of DSL's for the rapid development of Android apps
58 stars 26 forks source link

populate PendingRequests #264

Closed hannesa2 closed 5 years ago

hannesa2 commented 9 years ago

With this I'm able to scan the ops queue. For example when I'm triggered by loader and refresh the map only on last operation. Means: my MapActivity generates a lot of long-running operations

operation1 (latitude/longitude) <-- running
operation2 (latitude/longitude)
operation3 (latitude/longitude)
operation4 (latitude/longitude)
operation5 (latitude/longitude) <- next mandatory

when operation1 is finished, operation1 can now itself skip following unneeded operation2, operation3, operation4. Next is now operation5

this makes here no sense

operation webCall(double lat, double lon, int radiusKm) unique (lat, lon)