Conversation
Codecov Report
@@ Coverage Diff @@
## main #280 +/- ##
==========================================
+ Coverage 98.59% 98.69% +0.10%
==========================================
Files 100 102 +2
Lines 1419 1455 +36
==========================================
+ Hits 1399 1436 +37
+ Misses 20 19 -1
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
| { | ||
| if (i == 30u) | ||
| { | ||
| std::this_thread::yield(); |
There was a problem hiding this comment.
no member named this_thread in namespace std
BENCHMARK RESULTS (AUTOGENERATED)ci-ubuntu-clangObservable constructionTable
Observable liftTable
Observable subscribeTable
Observable subscribe #2Table
Observer constructionTable
OnNextTable
Subscriber constructionTable
SubscriptionTable
bufferTable
chains creation testTable
combine_latestTable
concatTable
distinct_until_changedTable
firstTable
foundamental sourcesTable
fromTable
immediate schedulerTable
justTable
lastTable
mapTable
mergeTable
observe_onTable
publish_subject callbacksTable
publish_subject routinesTable
repeatTable
scanTable
single-threaded locksTable
skipTable
switch_on_nextTable
takeTable
take_lastTable
take_untilTable
trampoline schedulerTable
windowTable
with_latest_fromTable
ci-ubuntu-gccObservable constructionTable
Observable liftTable
Observable subscribeTable
Observable subscribe #2Table
Observer constructionTable
OnNextTable
Subscriber constructionTable
SubscriptionTable
bufferTable
chains creation testTable
combine_latestTable
concatTable
distinct_until_changedTable
firstTable
foundamental sourcesTable
fromTable
immediate schedulerTable
justTable
lastTable
mapTable
mergeTable
observe_onTable
publish_subject callbacksTable
publish_subject routinesTable
repeatTable
scanTable
single-threaded locksTable
skipTable
switch_on_nextTable
takeTable
take_lastTable
take_untilTable
trampoline schedulerTable
windowTable
with_latest_fromTable
ci-windowsObservable constructionTable
Observable liftTable
Observable subscribeTable
Observable subscribe #2Table
Observer constructionTable
OnNextTable
Subscriber constructionTable
SubscriptionTable
bufferTable
chains creation testTable
combine_latestTable
concatTable
distinct_until_changedTable
firstTable
foundamental sourcesTable
fromTable
immediate schedulerTable
justTable
lastTable
mapTable
mergeTable
observe_onTable
publish_subject callbacksTable
publish_subject routinesTable
repeatTable
scanTable
single-threaded locksTable
skipTable
switch_on_nextTable
takeTable
take_lastTable
take_untilTable
trampoline schedulerTable
windowTable
with_latest_fromTable
|
|
Kudos, SonarCloud Quality Gate passed! |
|
Awesome, thanks :-) |
|
@thorstink, waiting for the feedback ;-) |
|
Ah, I think I am missing something. What feedback? :-)
sample_with_time is something I would still like a lot. What I mean is
something similar to RxCpp's sample_with_time:
https://github.com/ReactiveX/RxCpp/blob/main/Rx/v2/test/operators/sample.cpp
Something that rxcpp does not have, but what I think would be nice (I've
noticed I wanted it sometimes), is a simple downsample operator. Pass one
message, skip three, pass one, skip three etc.
Or did you mean something else?
…On Wed, 12 Oct 2022 at 08:50, Aleksey Loginov ***@***.***> wrote:
@thorstink <https://github.com/thorstink>, waiting for the feedback ;-)
BTW, do you still need sample with observable logic?
—
Reply to this email directly, view it on GitHub
<#280 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEDBJ5JPN4N62NGMWYZAMFLWCZNRXANCNFSM6AAAAAARCTL4B4>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Feedback about usage =) As far as I remember you requested this operator =)
Yeah, rpp has same after this PR =)
Does it something like "take N elements each NNth element"? |








Partly resolves #265