-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support batch command #7
Comments
I was thinking in implementing a The In addition, the The The I'll upload a branch when i finish a working draft of this. @stdweird What do you think of this implementation? |
@NickCis can you give an mocked-up example how a client application would look like (or how it woul duse the batch code)? i want to avoid that it becomes unnecessarily complex to use for simple things. i agree that the location of also have a look at #11. it simplifies the generated API code, and you can now pass option directly to and for convenience we could create an autoload wrapper like sub batch_$method {
my $self = shift;
return $self->api_$method(@_, __batch => 1);
} |
@stdweird A mock of how the client would call the batch method:
In addition, api methos could be called without batch, as it was done previously (this is going to be achieve through Autoloading):
|
@NickCis some remarks
That way you can work on the |
@stdweird
b. As regards The c. It looks good to me! If i have time, i'll try to write some code today or in the weekend, currently, i'm a bit busy. |
Allow the posibility of batching commands as the FreeIPA web does.
(method
batch
)The text was updated successfully, but these errors were encountered: