-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Beta3: Unable to use async methods for resources #1217
Comments
We need a following methods in sdk classes. com.microsoft.azure.management.resources com.microsoft.azure.management.compute |
Following async methods (that return ServiceFuture and takes callback) are supported VM:: stopAsync() a.k.a.s VM::poweroffAsync GroupableResourcesImpl#getByGroupAsync() Support for fluent SupportsListing#listAsync(ListOperationCallback serviceCallback)
SubscriptionImpl#listLocationsAsync(String subscriptionId, ServiceCallback<List> serviceCallback) |
async is supported as per above, that's the scope of the SDK's coverage for async. |
Currently we're unable to use most of async methods from underlining *inner resource implementation.
But actually
VirtualMachinesInner
provides lots of *async methods hidden byVirtualMachinesImpl
.The text was updated successfully, but these errors were encountered: