Uses of Interface
org.apache.ibatis.executor.Executor

Packages that use Executor
org.apache.ibatis.executor TODO fillme. 
org.apache.ibatis.executor.keygen TODO fillme. 
org.apache.ibatis.executor.loader TODO fillme. 
org.apache.ibatis.executor.resultset TODO fillme. 
org.apache.ibatis.executor.statement TODO fillme. 
org.apache.ibatis.session TODO fillme. 
org.apache.ibatis.session.defaults TODO fillme. 
 

Uses of Executor in org.apache.ibatis.executor
 

Classes in org.apache.ibatis.executor that implement Executor
 class BaseExecutor
           
 class BatchExecutor
           
 class CachingExecutor
           
 class ReuseExecutor
           
 class SimpleExecutor
           
 

Constructors in org.apache.ibatis.executor with parameters of type Executor
CachingExecutor(Executor delegate)
           
CachingExecutor(Executor delegate, boolean autoCommit)
           
 

Uses of Executor in org.apache.ibatis.executor.keygen
 

Methods in org.apache.ibatis.executor.keygen with parameters of type Executor
 void SelectKeyGenerator.processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void NoKeyGenerator.processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void KeyGenerator.processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void Jdbc3KeyGenerator.processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void SelectKeyGenerator.processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void NoKeyGenerator.processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void KeyGenerator.processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 void Jdbc3KeyGenerator.processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter)
           
 

Uses of Executor in org.apache.ibatis.executor.loader
 

Fields in org.apache.ibatis.executor.loader declared as Executor
protected  Executor ResultLoader.executor
           
 

Constructors in org.apache.ibatis.executor.loader with parameters of type Executor
ResultLoader(Configuration config, Executor executor, MappedStatement mappedStatement, Object parameterObject, Class<?> targetType, CacheKey cacheKey, BoundSql boundSql)
           
 

Uses of Executor in org.apache.ibatis.executor.resultset
 

Fields in org.apache.ibatis.executor.resultset declared as Executor
protected  Executor FastResultSetHandler.executor
           
 

Constructors in org.apache.ibatis.executor.resultset with parameters of type Executor
FastResultSetHandler(Executor executor, MappedStatement mappedStatement, ParameterHandler parameterHandler, ResultHandler resultHandler, BoundSql boundSql, RowBounds rowBounds)
           
NestedResultSetHandler(Executor executor, MappedStatement mappedStatement, ParameterHandler parameterHandler, ResultHandler resultHandler, BoundSql boundSql, RowBounds rowBounds)
           
 

Uses of Executor in org.apache.ibatis.executor.statement
 

Fields in org.apache.ibatis.executor.statement declared as Executor
protected  Executor BaseStatementHandler.executor
           
 

Constructors in org.apache.ibatis.executor.statement with parameters of type Executor
BaseStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
CallableStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
PreparedStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
RoutingStatementHandler(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
SimpleStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
 

Uses of Executor in org.apache.ibatis.session
 

Methods in org.apache.ibatis.session that return Executor
 Executor Configuration.newExecutor(Transaction transaction)
           
 Executor Configuration.newExecutor(Transaction transaction, ExecutorType executorType)
           
 Executor Configuration.newExecutor(Transaction transaction, ExecutorType executorType, boolean autoCommit)
           
 

Methods in org.apache.ibatis.session with parameters of type Executor
 ResultSetHandler Configuration.newResultSetHandler(Executor executor, MappedStatement mappedStatement, RowBounds rowBounds, ParameterHandler parameterHandler, ResultHandler resultHandler, BoundSql boundSql)
           
 StatementHandler Configuration.newStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)
           
 

Uses of Executor in org.apache.ibatis.session.defaults
 

Constructors in org.apache.ibatis.session.defaults with parameters of type Executor
DefaultSqlSession(Configuration configuration, Executor executor)
           
DefaultSqlSession(Configuration configuration, Executor executor, boolean autoCommit)
          Deprecated. 
 



Copyright © 2010-2012 MyBatis.org. All Rights Reserved.