Class: Cfdef::Exporter
- Inherits:
-
Object
- Object
- Cfdef::Exporter
- Includes:
- Utils::Helper
- Defined in:
- lib/cfdef/exporter.rb
Constant Summary collapse
- CONCURRENCY =
8
Instance Method Summary collapse
- #export ⇒ Object
-
#initialize(client, options = {}) ⇒ Exporter
constructor
A new instance of Exporter.
Methods included from Utils::Helper
Constructor Details
#initialize(client, options = {}) ⇒ Exporter
Returns a new instance of Exporter.
6 7 8 9 |
# File 'lib/cfdef/exporter.rb', line 6 def initialize(client, = {}) @client = client @options = end |
Instance Method Details
#export ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/cfdef/exporter.rb', line 11 def export { distributions: export_distributions, # TODO: #streaming_distributions: export_streaming_distributions, }.sort_array! end |