-
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
[CS0618] InternalFlowOperations
- Warning Disable
#6674
Conversation
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.
Use GraphStage
instead because IStage
it is Obsolete
however IStage
it is an Interface
Func<IStage<TIn, TOut>> stageFactory) | ||
#pragma warning restore CS0618 // Type or member is obsolete |
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.
IStage
Obsolete
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'm sorry, I don't understand - why is disabling the warning the right fix here versus marking this method as obsolete itself?
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.
akka.net/src/core/Akka.Streams/Stage/Stage.cs
Lines 34 to 35 in 2b7fef5
[Obsolete("Please use GraphStage instead. [1.1.0]")] | |
public interface IStage<in TIn, out TOut> { } |
IStage<TIn, TOut>
it is an Interface
Hey, Can you help me with the PR, I changed a word in Documentation here: https://getakka.net/articles/actors/receive-actor-api.html and two DocFx tests are failing. |
Which PR? |
Checklist
For significant changes, please ensure that the following have been completed (delete if not relevant):