Class: Async::HTTP::Protocol::HTTP2::Server
- Inherits:
-
HTTP::Protocol::HTTP2::Server
- Object
- HTTP::Protocol::HTTP2::Server
- Async::HTTP::Protocol::HTTP2::Server
show all
- Includes:
- Connection
- Defined in:
- lib/async/http/protocol/http2/server.rb
Instance Attribute Summary collapse
Attributes included from Connection
#count, #stream
Instance Method Summary
collapse
Methods included from Connection
#close, #connected?, #multiplex, #peer, #read_in_background, #reusable?, #start_connection, #version
Constructor Details
#initialize(stream, *args) ⇒ Server
33
34
35
36
37
38
39
40
41
|
# File 'lib/async/http/protocol/http2/server.rb', line 33
def initialize(stream, *args)
@stream = stream
framer = ::HTTP::Protocol::HTTP2::Framer.new(stream)
super(framer, *args)
@requests = Async::Queue.new
end
|
Instance Attribute Details
#requests ⇒ Object
Returns the value of attribute requests.
43
44
45
|
# File 'lib/async/http/protocol/http2/server.rb', line 43
def requests
@requests
end
|
Instance Method Details
#create_stream(stream_id) ⇒ Object
45
46
47
48
49
|
# File 'lib/async/http/protocol/http2/server.rb', line 45
def create_stream(stream_id)
request = Request.new(self, stream_id)
return request.stream
end
|
#each ⇒ Object
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# File 'lib/async/http/protocol/http2/server.rb', line 57
def each
while request = @requests.dequeue
@count += 1
response = begin
response = yield(request)
rescue
request.stream.send_reset_stream(::HTTP::Protocol::HTTP2::INTERNAL_ERROR)
Async.logger.error(request) {$!}
else
request.send_response(response)
end
end
end
|
#stop_connection ⇒ Object
51
52
53
54
55
|
# File 'lib/async/http/protocol/http2/server.rb', line 51
def stop_connection
super
@requests.enqueue nil
end
|