Module: Mongoid::Threaded::Lifecycle::ClassMethods

Defined in:
lib/mongoid/threaded/lifecycle.rb

Instance Method Summary collapse

Instance Method Details

#_creatingObject

Execute a block in creating mode.

Examples:

Execute in creating mode.

creating do
  relation.push(doc)
end

Returns:

  • (Object)

    The return value of the block.

Since:

  • 2.1.0



159
160
161
162
163
164
# File 'lib/mongoid/threaded/lifecycle.rb', line 159

def _creating
  Threaded.begin_execution(CREATE)
  yield
ensure
  Threaded.exit_execution(CREATE)
end