-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Naming conventions #1935
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
Naming conventions #1935
Conversation
@@ -187,7 +187,7 @@ public void Conflate_must_work_with_a_buffer_and_fold() | |||
Source.From(Enumerable.Range(1, 50)) | |||
.ConflateWithSeed(i => i, (sum, i) => sum + i) | |||
.Buffer(50, OverflowStrategy.Backpressure) | |||
.RunFold(0, (sum, i) => sum + i, Materializer); | |||
.RunAggregate(0, (sum, i) => sum + i, Materializer); |
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.
Method name should be Conflate_must_work_with_a_buffer_and_aggregate
|
||
[Fact] | ||
public void A_Reduce_must_work_when_using_Source_RunReduce() | ||
public void A_Sum_must_work_when_using_Source_RunReduce() |
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.
Should be A_Sum_must_work_when_using_Source_RunSum
Maybe it would make sense to keep the corresponding jvm file name as comment in renamed test files? |
Yes it would make sense. |
@Silv3rcircl3 updated |
Changed Akka.Stream DSL naming conventions to closer match LINQ/RxNet: