Class: Landline::ProcessorOrigin
- Inherits:
-
Object
- Object
- Landline::ProcessorOrigin
- Defined in:
- lib/landline/sandbox.rb
Overview
Ephemeral proxy class to which callback execution binds
Instance Attribute Summary collapse
-
#properties ⇒ Object
readonly
Returns the value of attribute properties.
-
#request ⇒ Object
readonly
Returns the value of attribute request.
-
#response ⇒ Object
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(request, properties) ⇒ ProcessorOrigin
constructor
A new instance of ProcessorOrigin.
Constructor Details
#initialize(request, properties) ⇒ ProcessorOrigin
Returns a new instance of ProcessorOrigin.
24 25 26 27 |
# File 'lib/landline/sandbox.rb', line 24 def initialize(request, properties) @request = request @properties = Landline::Util::LookupROProxy.new(properties) end |
Instance Attribute Details
#properties ⇒ Object (readonly)
Returns the value of attribute properties.
30 31 32 |
# File 'lib/landline/sandbox.rb', line 30 def properties @properties end |
#request ⇒ Object (readonly)
Returns the value of attribute request.
30 31 32 |
# File 'lib/landline/sandbox.rb', line 30 def request @request end |
#response ⇒ Object
Returns the value of attribute response.
29 30 31 |
# File 'lib/landline/sandbox.rb', line 29 def response @response end |