Method: Thin::AsyncResponse#write

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

#write(body) ⇒ Object Also known as: <<



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

def write(body)
  send_headers
  @body.call(body.respond_to?(:each) ? body : [body])
end