Class: Gapic::GenericLRO::BaseOperation
- Inherits:
-
Object
- Object
- Gapic::GenericLRO::BaseOperation
- Defined in:
- lib/gapic/generic_lro/base_operation.rb
Overview
A base class for the wrappers over the long-running operations.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#operation ⇒ Object
readonly
The wrapped operation object.
Instance Attribute Details
#operation ⇒ Object
Returns The wrapped operation object.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/gapic/generic_lro/base_operation.rb', line 23 class BaseOperation attr_reader :operation ## # @private # @param operation [Object] The operation object to be wrapped def initialize operation @operation = operation end protected attr_writer :operation end |