microsoft / dev-tunnels-ssh

SSH library for dev-tunnels
MIT License
131 stars 17 forks source link

Fix MultiChannelStream channel stream factory #9

Closed jasongin closed 2 years ago

jasongin commented 2 years ago

This amends the design from the previous PR. The pervious approach of a factory function parameter to the constructor made it difficult to provide a useful factory function because the MultiChannelStream instance could not yet be referenced at the time it was being constructed. A protected virtual CreateStream method is a more flexible design.