From 8d761768e8e09504fdfcb015e7700a601dd3fbb8 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Wed, 19 Sep 2012 10:49:16 -0400 Subject: [PATCH] note about error in-app error handling --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index f6bf4e9..cbe0875 100644 --- a/README.md +++ b/README.md @@ -44,5 +44,8 @@ use Rack::EMStream do |exception, environment| end ``` +This, of course, means that you need to push all of your in-app error handing to happen before your response +object hits `each`, but that's the price you pay for super-simple deferred streaming. + I'm still pretty n00b to async stuff, so if you have suggestions, let me know!