Method: Thin::AsyncResponse#send_headers

Defined in:
lib/message_bus/rack/thin_ext.rb

#send_headersObject



57
58
59
60
61
62
# File 'lib/message_bus/rack/thin_ext.rb', line 57

def send_headers
  return if @headers_sent

  @callback.call [@status, @headers, @body]
  @headers_sent = true
end