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.



141
142
143
144
145
146
# File 'lib/mongoid/threaded/lifecycle.rb', line 141

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