Class: Plushie::Event::Async
- Inherits:
-
Data
- Object
- Data
- Plushie::Event::Async
- Defined in:
- lib/plushie/event.rb
Overview
Async command result events. Triggered when a Command.async lambda completes execution.
Instance Attribute Summary collapse
-
#result ⇒ Object
readonly
Returns the value of attribute result.
-
#result [Object] return value of the async lambda([Object]) ⇒ Object
readonly
Async command result events.
-
#tag ⇒ Object
readonly
Returns the value of attribute tag.
-
#tag [Symbol] the tag specified in Command.async([Symbol]) ⇒ Object
readonly
Async command result events.
Instance Attribute Details
#result ⇒ Object (readonly)
Returns the value of attribute result
352 353 354 |
# File 'lib/plushie/event.rb', line 352 def result @result end |
#result [Object] return value of the async lambda([Object]) ⇒ Object (readonly)
Async command result events. Triggered when a Command.async lambda completes execution.
352 |
# File 'lib/plushie/event.rb', line 352 Async = Data.define(:tag, :result) |
#tag ⇒ Object (readonly)
Returns the value of attribute tag
352 353 354 |
# File 'lib/plushie/event.rb', line 352 def tag @tag end |
#tag [Symbol] the tag specified in Command.async([Symbol]) ⇒ Object (readonly)
Async command result events. Triggered when a Command.async lambda completes execution.
352 |
# File 'lib/plushie/event.rb', line 352 Async = Data.define(:tag, :result) |