Class: Falcon::Service::Proxy
Instance Method Summary
collapse
Methods inherited from Generic
#include?, #initialize, #logger, #setup, #start, #stop, wrap
Instance Method Details
#authority ⇒ Object
33
34
35
|
# File 'lib/falcon/service/proxy.rb', line 33
def authority
@evaluator.authority
end
|
#endpoint ⇒ Object
37
38
39
|
# File 'lib/falcon/service/proxy.rb', line 37
def endpoint
@evaluator.endpoint
end
|
#name ⇒ Object
29
30
31
|
# File 'lib/falcon/service/proxy.rb', line 29
def name
"#{self.class} for #{self.authority}"
end
|
#protocol ⇒ Object
49
50
51
|
# File 'lib/falcon/service/proxy.rb', line 49
def protocol
endpoint.protocol
end
|
#root ⇒ Object
45
46
47
|
# File 'lib/falcon/service/proxy.rb', line 45
def root
@evaluator.root
end
|
#scheme ⇒ Object
53
54
55
|
# File 'lib/falcon/service/proxy.rb', line 53
def scheme
endpoint.scheme
end
|
#ssl_context ⇒ Object
41
42
43
|
# File 'lib/falcon/service/proxy.rb', line 41
def ssl_context
@evaluator.ssl_context
end
|