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