-
Notifications
You must be signed in to change notification settings - Fork 2
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
Generated Code ? #20
Comments
The code is generated by accessing the wsdl and the xsd from a running backend |
Any what class is run to create the code ? |
It is not in the code. It is something Sebastien wrote and maintains. Some
|
@dmfrey it is actually in groovy ;) |
Where can I find it ? |
The commit notes make refernce to "generated code" but it is not clear what was used to create this code.
I am wondering if similar code could be used to provide an more user friendly API where each method call takes an callback, similar to the method described here (http://www.codenibbles.com/blog/2012/03/17/asynchronous-object-invocation-android/)
Such that all the android AsyncTask stuff is handled for you, so that
ResponseEntity getHostName()
becomes
void getHostName(AsyncCallback< String > callback)
This removed the need to wrap any threading code round your main code
The text was updated successfully, but these errors were encountered: