You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reduce allocations on InlineStreamMultiplexer/createStreamChannel (#450)
## Motivation
When creating stream channels on the `InlineStreamMultiplexer`, we are currently performing a `flatSubmit` on two different codepaths. This allocates two ELFs: one on `submit`, and one on `flatMap`. This is unnecessary, as we could do with just one allocation.
## Modifications
Create a single ELP and call `execute` on the EL instead of using `flatSubmit`.
## Result
Fewer allocations
0 commit comments