Uses of Interface
net.floodlightcontroller.storage.IQuery

Packages that use IQuery
net.floodlightcontroller.storage   
net.floodlightcontroller.storage.nosql   
 

Uses of IQuery in net.floodlightcontroller.storage
 

Methods in net.floodlightcontroller.storage that return IQuery
 IQuery IStorageSourceService.createQuery(java.lang.String tableName, java.lang.String[] columnNames, IPredicate predicate, RowOrdering ordering)
          Create a query object representing the given query parameters.
abstract  IQuery AbstractStorageSource.createQuery(java.lang.String tableName, java.lang.String[] columnNames, IPredicate predicate, RowOrdering ordering)
           
 

Methods in net.floodlightcontroller.storage with parameters of type IQuery
 IResultSet IStorageSourceService.executeQuery(IQuery query)
          Execute a query created with createQuery.
 IResultSet AbstractStorageSource.executeQuery(IQuery query)
           
 java.util.concurrent.Future<IResultSet> IStorageSourceService.executeQueryAsync(IQuery query)
          Asynchronous variant of executeQuery.
 java.util.concurrent.Future<IResultSet> AbstractStorageSource.executeQueryAsync(IQuery query)
           
protected abstract  IResultSet AbstractStorageSource.executeQueryImpl(IQuery query)
           
 

Uses of IQuery in net.floodlightcontroller.storage.nosql
 

Classes in net.floodlightcontroller.storage.nosql that implement IQuery
 class NoSqlQuery
           
 

Methods in net.floodlightcontroller.storage.nosql that return IQuery
 IQuery NoSqlStorageSource.createQuery(java.lang.String tableName, java.lang.String[] columnNameList, IPredicate predicate, RowOrdering rowOrdering)
           
 

Methods in net.floodlightcontroller.storage.nosql with parameters of type IQuery
 IResultSet NoSqlStorageSource.executeQueryImpl(IQuery query)