Class AtsListApplicationChangesRequestBuilder
- java.lang.Object
-
- com.stackone.stackone_client_java.models.operations.async.AtsListApplicationChangesRequestBuilder
-
public class AtsListApplicationChangesRequestBuilder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description AtsListApplicationChangesRequestBuilder(SDKConfiguration sdkConfiguration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.concurrent.CompletableFuture<AtsListApplicationChangesResponse>call()org.reactivestreams.Publisher<AtsListApplicationChangesResponse>callAsPublisher()Returns a Publisher that performs next page calls till no more pages are returned.AtsListApplicationChangesRequestBuilderrequest(AtsListApplicationChangesRequest request)AtsListApplicationChangesRequestBuilderretryConfig(RetryConfig retryConfig)AtsListApplicationChangesRequestBuilderretryConfig(java.util.Optional<RetryConfig> retryConfig)
-
-
-
Constructor Detail
-
AtsListApplicationChangesRequestBuilder
public AtsListApplicationChangesRequestBuilder(SDKConfiguration sdkConfiguration)
-
-
Method Detail
-
request
public AtsListApplicationChangesRequestBuilder request(AtsListApplicationChangesRequest request)
-
retryConfig
public AtsListApplicationChangesRequestBuilder retryConfig(RetryConfig retryConfig)
-
retryConfig
public AtsListApplicationChangesRequestBuilder retryConfig(java.util.Optional<RetryConfig> retryConfig)
-
call
public java.util.concurrent.CompletableFuture<AtsListApplicationChangesResponse> call()
-
callAsPublisher
public org.reactivestreams.Publisher<AtsListApplicationChangesResponse> 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<AtsListApplicationChangesResponse> publisher = builder.callAsPublisher(); publisher.subscribe(new Subscriber<AtsListApplicationChangesResponse>() { // Handle onNext, onError, onComplete });- Returns:
- A Publisher that emits pages asynchronously
-
-