Skip to content

Commit a5d77c2

Browse files
BamLubiluka
and
luka
authored
feat: add Connection::has_streams() for server connections (#838)
Co-authored-by: luka <[email protected]>
1 parent 2dc3078 commit a5d77c2

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/proto/connection.rs

+5
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,11 @@ where
242242
}
243243
}
244244

245+
/// Checks if there are any streams
246+
pub fn has_streams(&self) -> bool {
247+
self.inner.streams.has_streams()
248+
}
249+
245250
/// Checks if there are any streams or references left
246251
pub fn has_streams_or_other_references(&self) -> bool {
247252
// If we poll() and realize that there are no streams or references

src/server.rs

+5
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,11 @@ where
553553
self.connection.take_user_pings().map(PingPong::new)
554554
}
555555

556+
/// Checks if there are any streams
557+
pub fn has_streams(&self) -> bool {
558+
self.connection.has_streams()
559+
}
560+
556561
/// Returns the maximum number of concurrent streams that may be initiated
557562
/// by the server on this connection.
558563
///

0 commit comments

Comments
 (0)