Add a TODO for handling the returned set of call-service selectors from the finder.

Change-Id: I588c4c4c4324cbee8b20ed5a10428e1a8f475649
This commit is contained in:
Ben Gilad 2014-01-16 18:26:12 -08:00
parent 03292d40a7
commit 134cf09661
1 changed files with 4 additions and 0 deletions

View File

@ -125,6 +125,10 @@ final class Switchboard {
void setSelectors(Set<ICallServiceSelector> selectors) {
ThreadUtil.checkOnMainThread();
// TODO(gilad): Add logic to include the built-in selectors (e.g. for dealing with
// emergency calls) and order the entire set prior to the assignment below. If the
// built-in selectors can be implemented in a manner that does not require binding,
// that's probably preferred. May want to use a LinkedHashSet for the sorted set.
mSelectors = selectors;
processPendingOutgoingCalls();
}