Method: ActiveSupport::ExecutionWrapper#complete!
- Defined in:
- activesupport/lib/active_support/execution_wrapper.rb
#complete! ⇒ Object
Complete this in-flight execution. This method must be called exactly once on the result of any call to run!.
Where possible, prefer wrap.
135 136 137 138 139 |
# File 'activesupport/lib/active_support/execution_wrapper.rb', line 135 def complete! complete ensure IsolatedExecutionState.delete(self.class.active_key) end |