Method: Protocol::HTTP2::ResetStreamFrame#pack

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

#pack(error_code = NO_ERROR) ⇒ Object



54
55
56
57
# File 'lib/protocol/http2/reset_stream_frame.rb', line 54

def pack(error_code = NO_ERROR)
	@payload = [error_code].pack(FORMAT)
	@length = @payload.bytesize
end