class Redis::Connection::RedisClient

Public Instance Methods

connected?() click to toggle source
# File lib/redis/connection/synchrony.rb, line 23
def connected?
  @connected
end
connection_completed() click to toggle source
# File lib/redis/connection/synchrony.rb, line 18
def connection_completed
  @connected = true
  succeed
end
post_init() click to toggle source
# File lib/redis/connection/synchrony.rb, line 12
def post_init
  @req = nil
  @connected = false
  @reader = ::Hiredis::Reader.new
end
read() click to toggle source
# File lib/redis/connection/synchrony.rb, line 45
def read
  @req = EventMachine::DefaultDeferrable.new
  EventMachine::Synchrony.sync @req
end
receive_data(data) click to toggle source
# File lib/redis/connection/synchrony.rb, line 27
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 50
def send(data)
  callback { send_data data }
end
unbind() click to toggle source
# File lib/redis/connection/synchrony.rb, line 54
def unbind
  @connected = false
  if @req
    @req.fail [:error, Errno::ECONNRESET]
    @req = nil
  else
    fail
  end
end