Interface ThreadService.WithRawResponse
-
- All Implemented Interfaces:
public interface ThreadService.WithRawResponseA view of ThreadService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract ThreadService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
listTraces
@MustBeClosed() HttpResponseFor<ThreadListTracesPage> listTraces(String threadId, ThreadListTracesParams params)
Returns a raw HTTP response for
get /v2/threads/{thread_id}/traces, but is otherwise the same as ThreadService.listTraces.
-
listTraces
@MustBeClosed() HttpResponseFor<ThreadListTracesPage> listTraces(String threadId, ThreadListTracesParams params, RequestOptions requestOptions)
-
listTraces
@MustBeClosed() HttpResponseFor<ThreadListTracesPage> listTraces(ThreadListTracesParams params)
-
listTraces
@MustBeClosed() abstract HttpResponseFor<ThreadListTracesPage> listTraces(ThreadListTracesParams params, RequestOptions requestOptions)
-
query
@MustBeClosed() HttpResponseFor<ThreadQueryPage> query()
Returns a raw HTTP response for
post /v2/threads/query, but is otherwise the same as ThreadService.query.
-
query
@MustBeClosed() abstract HttpResponseFor<ThreadQueryPage> query(ThreadQueryParams params, RequestOptions requestOptions)
-
query
@MustBeClosed() HttpResponseFor<ThreadQueryPage> query(ThreadQueryParams params)
-
query
@MustBeClosed() HttpResponseFor<ThreadQueryPage> query(RequestOptions requestOptions)
-
stats
@MustBeClosed() HttpResponseFor<ThreadStatsResponse> stats(String threadId, ThreadStatsParams params)
Returns a raw HTTP response for
get /v2/threads/{thread_id}/stats, but is otherwise the same as ThreadService.stats.
-
stats
@MustBeClosed() HttpResponseFor<ThreadStatsResponse> stats(String threadId, ThreadStatsParams params, RequestOptions requestOptions)
-
stats
@MustBeClosed() HttpResponseFor<ThreadStatsResponse> stats(ThreadStatsParams params)
-
stats
@MustBeClosed() abstract HttpResponseFor<ThreadStatsResponse> stats(ThreadStatsParams params, RequestOptions requestOptions)
-
-
-
-