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
Modifier and Type Method Description CompletableFuture<HttpResponseFor<WatchFeedBackResponse>>
feedBack(WatchFeedBackParams params)
Returns a raw HTTP response for post /v2/watch/feedback
, but is otherwise the same as WatchServiceAsync.feedBack.abstract CompletableFuture<HttpResponseFor<WatchFeedBackResponse>>
feedBack(WatchFeedBackParams params, RequestOptions requestOptions)
CompletableFuture<HttpResponseFor<WatchPredictResponse>>
predict(WatchPredictParams params)
Returns a raw HTTP response for post /v2/watch/predict
, but is otherwise the same as WatchServiceAsync.predict.abstract CompletableFuture<HttpResponseFor<WatchPredictResponse>>
predict(WatchPredictParams params, RequestOptions requestOptions)
-
-
Method Detail
-
feedBack
@MustBeClosed() CompletableFuture<HttpResponseFor<WatchFeedBackResponse>> feedBack(WatchFeedBackParams params)
Returns a raw HTTP response for
post /v2/watch/feedback
, but is otherwise the same as WatchServiceAsync.feedBack.
-
feedBack
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<WatchFeedBackResponse>> feedBack(WatchFeedBackParams params, RequestOptions requestOptions)
-
predict
@MustBeClosed() 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
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<WatchPredictResponse>> predict(WatchPredictParams params, RequestOptions requestOptions)
-
-
-
-