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:
363 364 365 |
# File 'lib/action_controller/caching.rb', line 363 def delete(name, =nil) #:nodoc: @mutex.synchronize { super } end |
#delete_matched(matcher, options = nil) ⇒ Object
:nodoc:
367 368 369 |
# File 'lib/action_controller/caching.rb', line 367 def delete_matched(matcher, =nil) #:nodoc: @mutex.synchronize { super } end |
#read(name, options = nil) ⇒ Object
:nodoc:
355 356 357 |
# File 'lib/action_controller/caching.rb', line 355 def read(name, =nil) #:nodoc: @mutex.synchronize { super } end |
#write(name, value, options = nil) ⇒ Object
:nodoc:
359 360 361 |
# File 'lib/action_controller/caching.rb', line 359 def write(name, value, =nil) #:nodoc: @mutex.synchronize { super } end |