io.micronaut.rxjava2.http.client.BridgedRxStreamingHttpClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-rxjava2-http-client Show documentation
Show all versions of micronaut-rxjava2-http-client Show documentation
Integration between Micronaut and RxJava 2
The newest version!
/*
* Copyright 2017-2019 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.rxjava2.http.client;
import io.micronaut.core.annotation.Internal;
import io.micronaut.core.annotation.NonNull;
import io.micronaut.core.io.buffer.ByteBuffer;
import io.micronaut.core.type.Argument;
import io.micronaut.http.HttpRequest;
import io.micronaut.http.HttpResponse;
import io.micronaut.http.client.StreamingHttpClient;
import io.reactivex.Flowable;
import org.reactivestreams.Publisher;
import java.util.Map;
/**
* Internal bridge for the {@link RxHttpClient} and {@link RxStreamingHttpClient}.
*
* @author Sergio del Amo
* @since 3.0.0
*/
@Internal
class BridgedRxStreamingHttpClient extends BridgedRxHttpClient implements RxStreamingHttpClient {
private final StreamingHttpClient streamingHttpClient;
/**
* Default constructor.
* @param streamingHttpClient Streaming HTTP Client
*/
BridgedRxStreamingHttpClient(StreamingHttpClient streamingHttpClient) {
super(streamingHttpClient);
this.streamingHttpClient = streamingHttpClient;
}
@Override
public Flowable> dataStream(@NonNull HttpRequest request) {
return Flowable.fromPublisher(streamingHttpClient.dataStream(request));
}
@Override
public Publisher> dataStream(@NonNull HttpRequest request, @NonNull Argument> errorType) {
return Flowable.fromPublisher(streamingHttpClient.dataStream(request, errorType));
}
@Override
public Flowable>> exchangeStream(@NonNull HttpRequest request) {
return Flowable.fromPublisher(streamingHttpClient.exchangeStream(request));
}
@Override
public Publisher>> exchangeStream(@NonNull HttpRequest request, @NonNull Argument> errorType) {
return Flowable.fromPublisher(streamingHttpClient.exchangeStream(request, errorType));
}
@Override
public Publisher