Closed neuecc closed 8 years ago
More Improvment StackTrace.
This stacktrace indicates Where().Select().Take().Subscribe()
Extremely clear and gets more performance!
I've done all. I'll release next version(5.0) soon.
New version is very fast.
.Where(x => x % 2 == 0).Select(x => x * x).Take(10).Subscribe()
.Where(x => x % 2 == 0).Select(x => x * x).Take(10).Subscribe()
Old: Subscribe = 457ms OnNext = 11ms
New: Subscribe = 38ms OnNext = 2.6ms
Release UniRx 5.0.0.
I'm working in anonymous operator to named operator for performance improvement and readable stacktrace.
for example stack trace of below code are...
Please wait a moment for easy to debug!
rest of operators list---