class SSE::Errors::ReadTimeoutError

An exception class indicating that the client dropped the connection due to a read timeout. This means that the number of seconds specified by `read_timeout` in {Client#initialize} elapsed without receiving any data from the server.

Public Class Methods

new(interval) click to toggle source
Calls superclass method
# File lib/ld-eventsource/errors.rb, line 62
def initialize(interval)
  super("no data received in #{interval} seconds")
end