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
-
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)
-
sendEvents
@MustBeClosed() 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
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<WatchSendEventsResponse>> sendEvents(WatchSendEventsParams params, RequestOptions requestOptions)
-
sendFeedbacks
@MustBeClosed() 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
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<WatchSendFeedbacksResponse>> sendFeedbacks(WatchSendFeedbacksParams params, RequestOptions requestOptions)
-
-
-
-