Method: Protocol::HTTP2::Connection#deleted_stream?

Defined in:
lib/protocol/http2/connection.rb

#deleted_stream?(frame) ⇒ Boolean

Returns:

  • (Boolean)


283
284
285
# File 'lib/protocol/http2/connection.rb', line 283

def deleted_stream? frame
	frame.stream_id <= @local_stream_id or frame.stream_id <= @remote_stream_id
end