Package com.safetykit.services.blocking
Interface StreamService.WithRawResponse
-
- All Implemented Interfaces:
public interface StreamService.WithRawResponseA view of StreamService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract StreamService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
add
@MustBeClosed() HttpResponseFor<StreamAddResponse> add(String namespace, StreamAddParams params)
Returns a raw HTTP response for
post /v1/streams/{namespace}, but is otherwise the same as StreamService.add.
-
add
@MustBeClosed() HttpResponseFor<StreamAddResponse> add(String namespace, StreamAddParams params, RequestOptions requestOptions)
-
add
@MustBeClosed() HttpResponseFor<StreamAddResponse> add(StreamAddParams params)
-
add
@MustBeClosed() abstract HttpResponseFor<StreamAddResponse> add(StreamAddParams params, RequestOptions requestOptions)
-
addFrame
@MustBeClosed() HttpResponseFor<StreamAddFrameResponse> addFrame(String namespace, StreamAddFrameParams params)
Returns a raw HTTP response for
post /v1/streams/{namespace}/frames, but is otherwise the same as StreamService.addFrame.
-
addFrame
@MustBeClosed() HttpResponseFor<StreamAddFrameResponse> addFrame(String namespace, StreamAddFrameParams params, RequestOptions requestOptions)
-
addFrame
@MustBeClosed() HttpResponseFor<StreamAddFrameResponse> addFrame(StreamAddFrameParams params)
-
addFrame
@MustBeClosed() abstract HttpResponseFor<StreamAddFrameResponse> addFrame(StreamAddFrameParams params, RequestOptions requestOptions)
-
addTranscript
@MustBeClosed() HttpResponseFor<StreamAddTranscriptResponse> addTranscript(String namespace, StreamAddTranscriptParams params)
Returns a raw HTTP response for
post /v1/streams/{namespace}/transcripts, but is otherwise the same as StreamService.addTranscript.
-
addTranscript
@MustBeClosed() HttpResponseFor<StreamAddTranscriptResponse> addTranscript(String namespace, StreamAddTranscriptParams params, RequestOptions requestOptions)
-
addTranscript
@MustBeClosed() HttpResponseFor<StreamAddTranscriptResponse> addTranscript(StreamAddTranscriptParams params)
-
addTranscript
@MustBeClosed() abstract HttpResponseFor<StreamAddTranscriptResponse> addTranscript(StreamAddTranscriptParams params, RequestOptions requestOptions)
-
-
-
-