class Object

Constants

BUFSIZE

Public Instance Methods

rbuf_fill() click to toggle source
# File lib/logstash/outputs/loggly.rb, line 16
def rbuf_fill
  ::Timeout.timeout(@read_timeout) {
    @rbuf << @io.sysread(BUFSIZE)
  }
end