-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes GroupBy does not invoke decider
(cherry picked from commit 810882b)
- Loading branch information
1 parent
a36765b
commit a4f72e9
Showing
4 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
//----------------------------------------------------------------------- | ||
// <copyright file="TooManySubstreamsOpenException.cs" company="Akka.NET Project"> | ||
// Copyright (C) 2009-2022 Lightbend Inc. <http://www.lightbend.com> | ||
// Copyright (C) 2013-2022 .NET Foundation <https://github.com/akkadotnet/akka.net> | ||
// </copyright> | ||
//----------------------------------------------------------------------- | ||
|
||
using System; | ||
|
||
namespace Akka.Streams | ||
{ | ||
/// <summary> | ||
/// This exception signals that the maximum number of substreams declared has been exceeded. | ||
/// A finite limit is imposed so that memory usage is controlled. | ||
/// </summary> | ||
public class TooManySubstreamsOpenException : InvalidOperationException | ||
{ | ||
public TooManySubstreamsOpenException() : | ||
base("Cannot open a new substream as there are too many substreams open") | ||
{ } | ||
} | ||
} |