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
328328
329329 def isActive : Boolean = connection.isActive
330330
331- def begin (): Future [AsyncQueryResult ] = connection.sendQuery(" BEGIN" )
331+ def begin ()( implicit ctx : EC = ECGlobal ) : Future [AsyncQueryResult ] = connection.sendQuery(" BEGIN" )
332332
333- def rollback (): Future [AsyncQueryResult ] = connection.sendQuery(" ROLLBACK" )
333+ def rollback ()( implicit ctx : EC = ECGlobal ) : Future [AsyncQueryResult ] = connection.sendQuery(" ROLLBACK" )
334334
335- def commit (): Future [AsyncQueryResult ] = connection.sendQuery(" COMMIT" )
335+ def commit ()( implicit ctx : EC = ECGlobal ) : Future [AsyncQueryResult ] = connection.sendQuery(" COMMIT" )
336336
337337 def release (): Unit = connection.release()
338338
You can’t perform that action at this time.
0 commit comments