-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Retry stage #3235
Retry stage #3235
Conversation
src/core/Akka.Streams/Dsl/Retry.cs
Outdated
/// <typeparam name="TO">output elements type</typeparam> | ||
/// <typeparam name="TM">materialized value type</typeparam> | ||
[ApiMayChange] | ||
public static IGraph<FlowShape<Tuple<TI, TS>, Tuple<Result<TO>, TS>>, TM> Create<TI, TS, TO, TM>( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know that his signature is quite long, but maybe we should stick to convention for generic type parameters (TIn, TState, TOut, TMat)?
@marcpiechura looks like we have a conflict in the |
fixed conflicts |
@marcpiechura have hard failures on all of the framing specs now. Definitely something wrong there. |
src/core/Akka.Streams/Dsl/Framing.cs
Outdated
|
||
private readonly Outlet<ByteString> _out = new Outlet<ByteString>("DelimiterFraming.in"); | ||
|
||
public override FlowShape<ByteString, ByteString> Shape { get; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure why I added those properties since they're already provided by the base class...
No description provided.