Class: HTTP::Protocol::HTTP2::PendingSettings

Inherits:
Object
  • Object
show all
Defined in:
lib/http/protocol/http2/settings_frame.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(current = Settings.new) ⇒ PendingSettings

Returns a new instance of PendingSettings.



141
142
143
144
145
146
# File 'lib/http/protocol/http2/settings_frame.rb', line 141

def initialize(current = Settings.new)
	@current = current
	@pending = current.dup
	
	@queue = []
end

Instance Attribute Details

#currentObject (readonly)

Returns the value of attribute current.



148
149
150
# File 'lib/http/protocol/http2/settings_frame.rb', line 148

def current
  @current
end

#pendingObject (readonly)

Returns the value of attribute pending.



149
150
151
# File 'lib/http/protocol/http2/settings_frame.rb', line 149

def pending
  @pending
end

Instance Method Details

#acknowledgeObject



156
157
158
159
160
161
162
163
164
# File 'lib/http/protocol/http2/settings_frame.rb', line 156

def acknowledge
	if changes = @queue.shift
		@current.update(changes)
		
		return changes
	else
		raise ProtocolError.new("Cannot acknowledge settings, no changes pending")
	end
end

#append(changes) ⇒ Object



151
152
153
154
# File 'lib/http/protocol/http2/settings_frame.rb', line 151

def append(changes)
	@queue << changes
	@pending.update(changes)
end

#enable_pushObject



170
171
172
# File 'lib/http/protocol/http2/settings_frame.rb', line 170

def enable_push
	@current.enable_push
end

#header_table_sizeObject



166
167
168
# File 'lib/http/protocol/http2/settings_frame.rb', line 166

def header_table_size
	@current.header_table_size
end

#initial_window_sizeObject



178
179
180
# File 'lib/http/protocol/http2/settings_frame.rb', line 178

def initial_window_size
	@current.initial_window_size
end

#maximum_concurrent_streamsObject



174
175
176
# File 'lib/http/protocol/http2/settings_frame.rb', line 174

def maximum_concurrent_streams
	@current.maximum_concurrent_streams
end

#maximum_frame_sizeObject



182
183
184
# File 'lib/http/protocol/http2/settings_frame.rb', line 182

def maximum_frame_size
	@current.maximum_frame_size
end

#maximum_header_list_sizeObject



186
187
188
# File 'lib/http/protocol/http2/settings_frame.rb', line 186

def maximum_header_list_size
	@current.maximum_header_list_size
end