Package io.ebean

Class TxScope

    • Constructor Detail

      • TxScope

        public TxScope()
        Create a REQUIRED transaction scope.
      • TxScope

        public TxScope​(io.ebean.annotation.TxType type)
        Create with a given transaction scope type.
    • Method Detail

      • required

        public static TxScope required()
        Helper method to create a TxScope with REQUIRES.
      • requiresNew

        public static TxScope requiresNew()
        Helper method to create a TxScope with REQUIRES_NEW.
      • mandatory

        public static TxScope mandatory()
        Helper method to create a TxScope with MANDATORY.
      • supports

        public static TxScope supports()
        Helper method to create a TxScope with SUPPORTS.
      • notSupported

        public static TxScope notSupported()
        Helper method to create a TxScope with NOT_SUPPORTED.
      • never

        public static TxScope never()
        Helper method to create a TxScope with NEVER.
      • isBatchSet

        public boolean isBatchSet()
        Return true if PersistBatch has been set.
      • isBatchOnCascadeSet

        public boolean isBatchOnCascadeSet()
        Return true if batch on cascade has been set.
      • isBatchSizeSet

        public boolean isBatchSizeSet()
        Return true if batch size has been set.
      • checkBatchMode

        public void checkBatchMode()
        Check for batchSize being set without batch mode and use this to imply PersistBatch.ALL.
      • getType

        public io.ebean.annotation.TxType getType()
        Return the transaction type.
      • setType

        public TxScope setType​(io.ebean.annotation.TxType type)
        Set the transaction type.
      • getProfileId

        public int getProfileId()
        Return the transaction profile id.
      • setProfileId

        public TxScope setProfileId​(int profileId)
        Set the transaction profile id.
      • isSkipCache

        public boolean isSkipCache()
        Return true if the L2 cache should be skipped for this transaction.
      • setSkipCache

        public TxScope setSkipCache​(boolean skipCache)
        Set to true if the transaction should skip L2 cache access.
      • getLabel

        public String getLabel()
        Return the label for the transaction.
      • getBatch

        public io.ebean.annotation.PersistBatch getBatch()
        Return the batch mode.
      • setBatch

        public TxScope setBatch​(io.ebean.annotation.PersistBatch batch)
        Set the batch mode to use.
      • getBatchOnCascade

        public io.ebean.annotation.PersistBatch getBatchOnCascade()
        Return the batch on cascade mode.
      • setBatchOnCascade

        public TxScope setBatchOnCascade​(io.ebean.annotation.PersistBatch batchOnCascade)
        Set the batch on cascade mode.
      • getBatchSize

        public int getBatchSize()
        Return the batch size. 0 means use the default value.
      • isSkipGeneratedKeys

        public boolean isSkipGeneratedKeys()
        Return true if getGeneratedKeys should be skipped for this transaction.
      • isReadonly

        public boolean isReadonly()
        Return if the transaction should be treated as read only.
      • setReadOnly

        public TxScope setReadOnly​(boolean readOnly)
        Set if the transaction should be treated as read only.
      • isFlushOnQuery

        public boolean isFlushOnQuery()
        Return false if the JDBC batch buffer should not be flushed automatically when a query is executed.
      • setFlushOnQuery

        public TxScope setFlushOnQuery​(boolean flushOnQuery)
        Set flushOnQuery to be false to stop automatically flushing the JDBC batch buffer when a query is executed.
      • getIsolation

        public io.ebean.annotation.TxIsolation getIsolation()
        Return the Isolation level this transaction should run with.
      • setIsolation

        public TxScope setIsolation​(io.ebean.annotation.TxIsolation isolation)
        Set the transaction isolation level this transaction should run with.
      • getServerName

        public String getServerName()
        Return the serverName for this transaction. If this is null then the default server (default DataSource) will be used.
      • setServerName

        public TxScope setServerName​(String serverName)
        Set the serverName (DataSource name) for which this transaction will be. If the serverName is not specified (left null) then the default server will be used.
      • setRollbackFor

        public TxScope setRollbackFor​(Class<?>[] rollbackThrowables)
        Set multiple throwable's that will cause a rollback.
      • setNoRollbackFor

        public TxScope setNoRollbackFor​(Class<? extends Throwable> noRollback)
        Add a Throwable to a list that will NOT cause a rollback. You are able to call this method multiple times with different throwable's and they will added to a list.