AsyncEnumeration<E> Interface
Type Parameters
- E
The type of element to enumerate.
public interface AsyncEnumeration
Asynchronous enumerator
Method Summary
Modifier and Type | Method and Description |
---|---|
CompletableFuture<Boolean> |
hasMoreElementsAsync()
Gets asynchronously whether there are more elements to enumerate. |
CompletableFuture<E> |
nextElementAsync()
Gets the next element in enumeration. |
Method Details
hasMoreElementsAsync
public CompletableFuture
Gets asynchronously whether there are more elements to enumerate.
Returns:
A completable future which returns boolean indicating whether there are more elements left to enumerate.
nextElementAsync
public CompletableFuture
Gets the next element in enumeration.
Returns:
The next element.
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for Java