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