Skip to content
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

[FEATURE] Async support in Java SDK #248

Open
avijeet95 opened this issue Mar 18, 2024 · 0 comments
Open

[FEATURE] Async support in Java SDK #248

avijeet95 opened this issue Mar 18, 2024 · 0 comments

Comments

@avijeet95
Copy link
Contributor

Problem Statement
The current implementation of SDK returns a Wait object for long running operations like cluster or warehouse creation. The clients have option to either getId() which returns identifier of the resource or use get() method which waits for the operation to complete and internally uses Thread.sleep for polling. This causes the current thread to block.

Proposed Solution
Support async programming by returning Futures. This will allow clients to write async code and better utilize their resources.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant