Skip to content

Commit

Permalink
Rename HttpServiceContext.streamingBlockingResponseFactory() (#914)
Browse files Browse the repository at this point in the history
Motivation:

We always use `BlockingStreaming*` prefix instead of `StreamingBlocking*`.

Modification:

- Rename `HttpServiceContext.streamingBlockingResponseFactory()` to
`HttpServiceContext.blockingStreamingResponseFactory()`;

Result:

Consistent naming.
  • Loading branch information
idelpivnitskiy committed Jan 8, 2020
1 parent 15dbe98 commit 9a73965
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ protected final StreamingHttpResponseFactory streamingResponseFactory() {
*
* @return {@link BlockingStreamingHttpResponseFactory} associated with this {@link HttpServiceContext}.
*/
protected final BlockingStreamingHttpResponseFactory streamingBlockingResponseFactory() {
protected final BlockingStreamingHttpResponseFactory blockingStreamingResponseFactory() {
return blockingFactory;
}
}

0 comments on commit 9a73965

Please sign in to comment.