public class ThreadSafeEstimatedQueryCollection extends Object implements EstimatedQueryCollection
EstimatedQueryCollection
interface thread safe by wrapping all behaviours in
synchronized method.Constructor and Description |
---|
ThreadSafeEstimatedQueryCollection(EstimatedQueryCollection estimatedQueries) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(QueryContext query)
add the given query to existing queries
|
boolean |
addAll(Set<QueryContext> queries) |
Set<QueryContext> |
getQueries() |
Set<QueryContext> |
getQueries(LensDriver driver) |
Set<QueryContext> |
getQueries(String user) |
int |
getQueriesCount() |
int |
getQueriesCount(LensDriver driver) |
QueryCost |
getTotalQueryCost(String user)
Get total query cost of all queries of given user
|
boolean |
remove(QueryContext query)
removes given query from existing queries
|
boolean |
removeAll(Set<QueryContext> queries) |
public ThreadSafeEstimatedQueryCollection(@NonNull EstimatedQueryCollection estimatedQueries)
public Set<QueryContext> getQueries(LensDriver driver)
getQueries
in interface EstimatedImmutableQueryCollection
driver
- Driver for which queries have to be returned.public int getQueriesCount(LensDriver driver)
getQueriesCount
in interface EstimatedImmutableQueryCollection
driver
- Driver for which count of queries have to be returned.public QueryCost getTotalQueryCost(String user)
EstimatedImmutableQueryCollection
getTotalQueryCost
in interface EstimatedImmutableQueryCollection
public Set<QueryContext> getQueries()
getQueries
in interface ImmutableQueryCollection
public Set<QueryContext> getQueries(String user)
getQueries
in interface ImmutableQueryCollection
user
- User for whom queries have to be returned.public int getQueriesCount()
getQueriesCount
in interface ImmutableQueryCollection
public boolean add(QueryContext query)
MutableQueryCollection
add
in interface MutableQueryCollection
public boolean addAll(Set<QueryContext> queries)
addAll
in interface MutableQueryCollection
public boolean remove(QueryContext query)
MutableQueryCollection
remove
in interface MutableQueryCollection
public boolean removeAll(Set<QueryContext> queries)
removeAll
in interface MutableQueryCollection
Copyright © 2014–2015 Apache Software Foundation. All rights reserved.