class Redis::Connection::RedisClient
Attributes
timeout[RW]
Public Instance Methods
connected?()
click to toggle source
# File lib/redis/connection/synchrony.rb, line 32 def connected? @connected end
connection_completed()
click to toggle source
# File lib/redis/connection/synchrony.rb, line 27 def connection_completed @connected = true succeed end
post_init()
click to toggle source
# File lib/redis/connection/synchrony.rb, line 21 def post_init @req = nil @connected = false @reader = ::Hiredis::Reader.new end
read()
click to toggle source
# File lib/redis/connection/synchrony.rb, line 54 def read @req = EventMachine::DefaultDeferrable.new @req.timeout(@timeout, :timeout) if @timeout > 0 EventMachine::Synchrony.sync @req end
receive_data(data)
click to toggle source
# File lib/redis/connection/synchrony.rb, line 36 def receive_data(data) @reader.feed(data) loop do begin reply = @reader.gets rescue RuntimeError => err @req.fail [:error, ProtocolError.new(err.message)] break end break if reply == false reply = CommandError.new(reply.message) if reply.is_a?(RuntimeError) @req.succeed [:reply, reply] end end
send(data)
click to toggle source
# File lib/redis/connection/synchrony.rb, line 60 def send(data) callback { send_data data } end
unbind()
click to toggle source
# File lib/redis/connection/synchrony.rb, line 64 def unbind @connected = false if @req @req.fail [:error, Errno::ECONNRESET] @req = nil else fail end end