Class Hookout::ThinConnection
In: lib/hookout/thin_backend.rb
Parent: Thin::Connection

Methods

Attributes

backend  [RW] 
rhttp_req  [RW] 

Public Instance methods

[Source]

# File lib/hookout/thin_backend.rb, line 60
    def close_connection_after_writing
      begin
        @rhttp_req.close
      ensure
        @backend.connection_finished(self)
      end
    end

[Source]

# File lib/hookout/thin_backend.rb, line 52
    def comm_inactivity_timeout=(timeout)
      # Ignore
    end

[Source]

# File lib/hookout/thin_backend.rb, line 48
    def persistent?
      false
    end

[Source]

# File lib/hookout/thin_backend.rb, line 56
    def send_data(data)
      @rhttp_req.write(data)
    end

[Validate]