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