Class: AwsDevUtils::NextTokenWrapper
- Inherits:
-
Object
- Object
- AwsDevUtils::NextTokenWrapper
- Defined in:
- lib/aws-dev-utils/next_token_wrapper.rb
Constant Summary collapse
- DEFAULT_MAX =
100
Instance Method Summary collapse
-
#initialize(client, max = DEFAULT_MAX) ⇒ NextTokenWrapper
constructor
Initialize a new NextTokenWrapper, internal use only.
- #method_missing(method, *args, &block) ⇒ Object
Constructor Details
#initialize(client, max = DEFAULT_MAX) ⇒ NextTokenWrapper
Initialize a new NextTokenWrapper, internal use only
9 10 11 12 |
# File 'lib/aws-dev-utils/next_token_wrapper.rb', line 9 def initialize client, max=DEFAULT_MAX @client = client @max = max end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object
14 15 16 |
# File 'lib/aws-dev-utils/next_token_wrapper.rb', line 14 def method_missing method, *args, &block do_call(method, *args, &block) end |