Module: ActionController::Caching::Fragments::ThreadSafety
- Defined in:
- lib/action_controller/caching.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#delete(name, options = nil) ⇒ Object
:nodoc:.
-
#delete_matched(matcher, options = nil) ⇒ Object
:nodoc:.
-
#read(name, options = nil) ⇒ Object
:nodoc:.
-
#write(name, value, options = nil) ⇒ Object
:nodoc:.
Instance Method Details
#delete(name, options = nil) ⇒ Object
:nodoc:
362 363 364 |
# File 'lib/action_controller/caching.rb', line 362 def delete(name, =nil) #:nodoc: @mutex.synchronize { super } end |
#delete_matched(matcher, options = nil) ⇒ Object
:nodoc:
366 367 368 |
# File 'lib/action_controller/caching.rb', line 366 def delete_matched(matcher, =nil) #:nodoc: @mutex.synchronize { super } end |
#read(name, options = nil) ⇒ Object
:nodoc:
354 355 356 |
# File 'lib/action_controller/caching.rb', line 354 def read(name, =nil) #:nodoc: @mutex.synchronize { super } end |
#write(name, value, options = nil) ⇒ Object
:nodoc:
358 359 360 |
# File 'lib/action_controller/caching.rb', line 358 def write(name, value, =nil) #:nodoc: @mutex.synchronize { super } end |