Class LmsListUserCompletionsRequestBuilder
- java.lang.Object
-
- com.stackone.stackone_client_java.models.operations.async.LmsListUserCompletionsRequestBuilder
-
public class LmsListUserCompletionsRequestBuilder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description LmsListUserCompletionsRequestBuilder(SDKConfiguration sdkConfiguration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.concurrent.CompletableFuture<LmsListUserCompletionsResponse>call()org.reactivestreams.Publisher<LmsListUserCompletionsResponse>callAsPublisher()Returns a Publisher that performs next page calls till no more pages are returned.LmsListUserCompletionsRequestBuilderrequest(LmsListUserCompletionsRequest request)LmsListUserCompletionsRequestBuilderretryConfig(RetryConfig retryConfig)LmsListUserCompletionsRequestBuilderretryConfig(java.util.Optional<RetryConfig> retryConfig)
-
-
-
Constructor Detail
-
LmsListUserCompletionsRequestBuilder
public LmsListUserCompletionsRequestBuilder(SDKConfiguration sdkConfiguration)
-
-
Method Detail
-
request
public LmsListUserCompletionsRequestBuilder request(LmsListUserCompletionsRequest request)
-
retryConfig
public LmsListUserCompletionsRequestBuilder retryConfig(RetryConfig retryConfig)
-
retryConfig
public LmsListUserCompletionsRequestBuilder retryConfig(java.util.Optional<RetryConfig> retryConfig)
-
call
public java.util.concurrent.CompletableFuture<LmsListUserCompletionsResponse> call()
-
callAsPublisher
public org.reactivestreams.Publisher<LmsListUserCompletionsResponse> callAsPublisher()
Returns a Publisher that performs next page calls till no more pages are returned.The returned publisher can be used with reactive frameworks:
Publisher<LmsListUserCompletionsResponse> publisher = builder.callAsPublisher(); publisher.subscribe(new Subscriber<LmsListUserCompletionsResponse>() { // Handle onNext, onError, onComplete });- Returns:
- A Publisher that emits pages asynchronously
-
-