class Redis::DeprecatedMulti
Public Class Methods
new(pipeline)
click to toggle source
Calls superclass method
# File lib/redis/pipeline.rb, line 224 def initialize(pipeline) super(pipeline) @deprecation_displayed = false end
Public Instance Methods
__getobj__()
click to toggle source
# File lib/redis/pipeline.rb, line 229 def __getobj__ unless @deprecation_displayed Pipeline.deprecation_warning("multi", Kernel.caller_locations(1, 10)) @deprecation_displayed = true end @delegate_dc_obj end