Class: ModSpox::Messages::Internal::PluginLoadResponse
- Defined in:
- lib/mod_spox/messages/internal/PluginLoadResponse.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#success ⇒ Object
readonly
success of loading.
Attributes inherited from Response
Instance Method Summary collapse
-
#initialize(object, successful) ⇒ PluginLoadResponse
constructor
- successful
-
load was successful Notifies requesting object if load was successful.
Constructor Details
#initialize(object, successful) ⇒ PluginLoadResponse
- successful
-
load was successful
Notifies requesting object if load was successful
10 11 12 13 |
# File 'lib/mod_spox/messages/internal/PluginLoadResponse.rb', line 10 def initialize(object, successful) super(object) @success = successful end |
Instance Attribute Details
#success ⇒ Object (readonly)
success of loading
7 8 9 |
# File 'lib/mod_spox/messages/internal/PluginLoadResponse.rb', line 7 def success @success end |