File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/main/scala/scalikejdbc/async Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -328,11 +328,11 @@ case class TxAsyncDBSession(connection: NonSharedAsyncConnection) extends AsyncD
328
328
329
329
def isActive : Boolean = connection.isActive
330
330
331
- def begin (): Future [AsyncQueryResult ] = connection.sendQuery(" BEGIN" )
331
+ def begin ()( implicit ctx : EC = ECGlobal ) : Future [AsyncQueryResult ] = connection.sendQuery(" BEGIN" )
332
332
333
- def rollback (): Future [AsyncQueryResult ] = connection.sendQuery(" ROLLBACK" )
333
+ def rollback ()( implicit ctx : EC = ECGlobal ) : Future [AsyncQueryResult ] = connection.sendQuery(" ROLLBACK" )
334
334
335
- def commit (): Future [AsyncQueryResult ] = connection.sendQuery(" COMMIT" )
335
+ def commit ()( implicit ctx : EC = ECGlobal ) : Future [AsyncQueryResult ] = connection.sendQuery(" COMMIT" )
336
336
337
337
def release (): Unit = connection.release()
338
338
You can’t perform that action at this time.
0 commit comments