Uses of Class
com.caucho.amber.query.ResultSetCacheChunk

Packages that use ResultSetCacheChunk
com.caucho.amber   
com.caucho.amber.entity   
com.caucho.amber.manager   
com.caucho.amber.query   
 

Uses of ResultSetCacheChunk in com.caucho.amber
 

Methods in com.caucho.amber that return ResultSetCacheChunk
 ResultSetCacheChunk EnvAmberManager.getQueryChunk(QueryCacheKey key)
          Returns the query result.
 

Methods in com.caucho.amber with parameters of type ResultSetCacheChunk
 void EnvAmberManager.putQueryChunk(QueryCacheKey key, ResultSetCacheChunk chunk)
          Sets the query result.
 

Uses of ResultSetCacheChunk in com.caucho.amber.entity
 

Methods in com.caucho.amber.entity with parameters of type ResultSetCacheChunk
 boolean AmberCompletion.complete(ResultSetCacheChunk cacheChunk)
          Code to update caches when a transaction completes.
 boolean RowInsertCompletion.complete(ResultSetCacheChunk chunk)
          Code to invalidate the query.
 boolean RowInvalidateCompletion.complete(ResultSetCacheChunk chunk)
          Code to invalidate the query.
 boolean TableInvalidateCompletion.complete(ResultSetCacheChunk chunk)
          Code to invalidate the query.
 

Uses of ResultSetCacheChunk in com.caucho.amber.manager
 

Methods in com.caucho.amber.manager that return ResultSetCacheChunk
 ResultSetCacheChunk AmberConnection.getQueryCacheChunk(java.lang.String sql, java.lang.Object[] args, int startRow)
          Returns the cache chunk.
 ResultSetCacheChunk AmberPersistenceUnit.getQueryChunk(QueryCacheKey key)
          Returns the query result.
 

Methods in com.caucho.amber.manager with parameters of type ResultSetCacheChunk
 void AmberConnection.putQueryCacheChunk(java.lang.String sql, java.lang.Object[] args, int startRow, ResultSetCacheChunk cacheChunk, java.sql.ResultSetMetaData cacheMetaData)
          Sets the cache chunk.
 void AmberPersistenceUnit.putQueryChunk(QueryCacheKey key, ResultSetCacheChunk chunk)
          Sets the query result.
 

Uses of ResultSetCacheChunk in com.caucho.amber.query
 

Methods in com.caucho.amber.query that return ResultSetCacheChunk
 ResultSetCacheChunk ResultSetCacheChunk.getNext()
          Gets the next chunk
 

Methods in com.caucho.amber.query with parameters of type ResultSetCacheChunk
 void ResultSetImpl.fillCacheChunk(ResultSetCacheChunk cacheChunk)
          Fills the cache chunk.
 void ResultSetImpl.setCacheChunk(ResultSetCacheChunk cacheChunk, java.sql.ResultSetMetaData metaData)
          Sets the first cache chunk
 void ResultSetCacheChunk.setNext(ResultSetCacheChunk next)
          Gets the next chunk
 

Constructors in com.caucho.amber.query with parameters of type ResultSetCacheChunk
ResultSetCacheChunk(ResultSetCacheChunk prev)