Method: Thin::AsyncResponse#write

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

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



64
65
66
67
# File 'lib/message_bus/rack/thin_ext.rb', line 64

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