-
Notifications
You must be signed in to change notification settings - Fork 2k
[Management] Asynchronous calls
Rujun Chen edited this page Aug 20, 2021
·
1 revision
One way of working asynchronously with the SDK is to integrate with Reactor.
Mono<VirtualMachine> vmObservable = vmCreatable.createAsync();
This is also how we handle the resource creations under the hood. Imagine creating a virtual machine, the creation of a disk and the creation of a virtual network are parallelized using Reactor.
The Mono
or Flux
we return are cold sequence. They do not start executing unless they are being subscribed.
- Frequently Asked Questions
- Azure Identity Examples
- Configuration
- Performance Tuning
- Android Support
- Unit Testing
- Test Proxy Migration
- Azure Json Migration
- New Checkstyle and Spotbugs pattern migration
- Protocol Methods
- TypeSpec-Java Quickstart
- Getting Started Guidance
- Adding a Module
- Building
- Writing Performance Tests
- Working with AutoRest
- Deprecation
- BOM guidelines
- Release process
- Access helpers