Package so.prelude.sdk.services.async
Interface WatchServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface WatchServiceAsync.WithRawResponse
A view of WatchServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract WatchServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
predict
CompletableFuture<HttpResponseFor<WatchPredictResponse>> predict(WatchPredictParams params)
Returns a raw HTTP response for
post /v2/watch/predict
, but is otherwise the same as WatchServiceAsync.predict.
-
predict
abstract CompletableFuture<HttpResponseFor<WatchPredictResponse>> predict(WatchPredictParams params, RequestOptions requestOptions)
-
sendEvents
CompletableFuture<HttpResponseFor<WatchSendEventsResponse>> sendEvents(WatchSendEventsParams params)
Returns a raw HTTP response for
post /v2/watch/event
, but is otherwise the same as WatchServiceAsync.sendEvents.
-
sendEvents
abstract CompletableFuture<HttpResponseFor<WatchSendEventsResponse>> sendEvents(WatchSendEventsParams params, RequestOptions requestOptions)
-
sendFeedbacks
CompletableFuture<HttpResponseFor<WatchSendFeedbacksResponse>> sendFeedbacks(WatchSendFeedbacksParams params)
Returns a raw HTTP response for
post /v2/watch/feedback
, but is otherwise the same as WatchServiceAsync.sendFeedbacks.
-
sendFeedbacks
abstract CompletableFuture<HttpResponseFor<WatchSendFeedbacksResponse>> sendFeedbacks(WatchSendFeedbacksParams params, RequestOptions requestOptions)
-
-
-
-