Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Determine what should happen if a stream handler throws an exception #41

Open
FrancoisChabot opened this issue Jul 9, 2019 · 0 comments

Comments

@FrancoisChabot
Copy link
Owner

My immediate intuition is that it should go something like this:

  Stream_promise<int> prom;
  auto fut = prom.get_future();

  int total = 0 ;
  auto done = fut.for_each([&](int v) {
    total += v;
    throw std::runtime_error("bam!");
  });

  prom.push(1);
  prom.push(1);

  EXPECT_EQ(1, total);
  EXPECT_THROW(done.get(), std::runtime_error);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant