Add a TODO for handling the returned set of call-service selectors from the finder.
Change-Id: I588c4c4c4324cbee8b20ed5a10428e1a8f475649
This commit is contained in:
parent
03292d40a7
commit
134cf09661
|
@ -125,6 +125,10 @@ final class Switchboard {
|
||||||
void setSelectors(Set<ICallServiceSelector> selectors) {
|
void setSelectors(Set<ICallServiceSelector> selectors) {
|
||||||
ThreadUtil.checkOnMainThread();
|
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;
|
mSelectors = selectors;
|
||||||
processPendingOutgoingCalls();
|
processPendingOutgoingCalls();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue