I’m rewriting a vehicle tracking application, a google maps based thing..
The users are able to search for a vehicle by typing a few characters of the vehicles “callsign”.
My application is based around a sort of “event bus” within Backbone.. when a search occurs I send a message on the bus saying something like “does anyone match this?”.. If a marker matches the search term it responds with a sort of “yes, I match!”..
My challenge arises when no-one matches, I get no response.. it feels a little hacky to “wait a little while” and check if a response has been recieved..
The application is based around Backbone.js and using the Event Aggregator pattern described in the answer to this question on Stack Overflow: https://stackoverflow.com/questions/7708195/access-function-in-one-view-from-another-in-backbone-js
Is there a well defined design pattern that might assist me here? Sending a request for a response and not getting any responses?
1
Could they not all reply with a NoResultFound message?
You know how many domains you have, so if they all reply with NoResultFound, then you’ll know what to do.
I guess this depends on the UI that you have. Assuming your UI has a list of search domains, then once the result comes back from each domain, you can display it to the user:
- DomainA – Searching…
- DomainB – No Results Found
- DomainC – Searching…
- DomainD – No Results Found
- etc