File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -242,6 +242,11 @@ where
242
242
}
243
243
}
244
244
245
+ /// Checks if there are any streams
246
+ pub fn has_streams ( & self ) -> bool {
247
+ self . inner . streams . has_streams ( )
248
+ }
249
+
245
250
/// Checks if there are any streams or references left
246
251
pub fn has_streams_or_other_references ( & self ) -> bool {
247
252
// If we poll() and realize that there are no streams or references
Original file line number Diff line number Diff line change @@ -553,6 +553,11 @@ where
553
553
self . connection . take_user_pings ( ) . map ( PingPong :: new)
554
554
}
555
555
556
+ /// Checks if there are any streams
557
+ pub fn has_streams ( & self ) -> bool {
558
+ self . connection . has_streams ( )
559
+ }
560
+
556
561
/// Returns the maximum number of concurrent streams that may be initiated
557
562
/// by the server on this connection.
558
563
///
You can’t perform that action at this time.
0 commit comments