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