Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
.close
,closeRead
and.closeWrite
methods on theStream
interface to be asyncConnection
interface now has.close
and.abort
methods.close
onStream
s andConnection
s wait for the internal message queues to empty before closing.abort
onStream
s andConnection
s close the underlying stream immediately and discards any unsent data@chainsafe/libp2p-yamux
now uses theAbstractStream
class from@libp2p/interface
the same as@libp2p/mplex
and@libp2p/webrtc
Follow-up PRs will be necessary to
@chainsafe/libp2p-yamux
,@chainsafe/libp2p-gossipsub
and@chainsafe/libp2p-noise
though they will not block the release as their code is temporarily added to this repo to let CI run.
Fixes #1793
Fixes #656
BREAKING CHANGE: the
.close
,closeRead
andcloseWrite
methods on theStream
interface are now asynchronous