abstract fun getAllFiltered(symbolQuery: String, nameQuery: String, type: Type): LiveData<List<Symbol>>
Returns all Symbols matching the query parameters, wrapped in LiveData.
symbolQuery
- The symbol fragment used in this query.
nameQuery
- The name fragment used in this query.
type
- The Symbol.Type used in this query.
Return
LiveData containing a List of all Symbols matching the query parameters.
abstract fun getAllFiltered(symbolQuery: String, nameQuery: String): LiveData<List<Symbol>>
Returns all Symbols matching the query parameters, wrapped in LiveData.
symbolQuery
- The symbol fragment used in this query.
nameQuery
- The name fragment used in this query.
Return
LiveData containing a List of all Symbols matching the query parameters.