method

isolation_level=

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: IsolatedExecutionState
isolation_level=(level) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/isolated_execution_state.rb, line 15
      def isolation_level=(level)
        return if level == @isolation_level

        unless %(thread fiber).include?(level)
          raise ArgumentError, "isolation_level must be `:thread` or `:fiber`, got: `#{level.inspect}`"
        end

        clear if @isolation_level

        @scope =
          case level
          when :thread; Thread
          when :fiber; Fiber
          end

        @isolation_level = level
      end
Register or log in to add new notes.