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