io.vertx.reactivex.grpc.client.GrpcClientResponse Maven / Gradle / Ivy
/*
* Copyright 2014 Red Hat, Inc.
*
* Red Hat licenses this file to you 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:
*
* http://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.vertx.reactivex.grpc.client;
import io.vertx.reactivex.RxHelper;
import io.vertx.reactivex.ObservableHelper;
import io.vertx.reactivex.FlowableHelper;
import io.vertx.reactivex.impl.AsyncResultMaybe;
import io.vertx.reactivex.impl.AsyncResultSingle;
import io.vertx.reactivex.impl.AsyncResultCompletable;
import io.vertx.reactivex.WriteStreamObserver;
import io.vertx.reactivex.WriteStreamSubscriber;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Iterator;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import io.vertx.core.Handler;
import io.vertx.core.AsyncResult;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.lang.rx.RxGen;
import io.vertx.lang.rx.TypeArg;
import io.vertx.lang.rx.MappingIterator;
/**
* A response from a gRPC server.
*
* You can set a {@link io.vertx.reactivex.grpc.client.GrpcClientResponse#messageHandler} to receive and a {@link io.vertx.reactivex.grpc.client.GrpcClientResponse#endHandler} to be notified
* of the end of the response.
*
*
*
* NOTE: This class has been automatically generated from the {@link io.vertx.grpc.client.GrpcClientResponse original} non RX-ified interface using Vert.x codegen.
*/
@RxGen(io.vertx.grpc.client.GrpcClientResponse.class)
public class GrpcClientResponse extends io.vertx.reactivex.grpc.common.GrpcReadStream {
@Override
public String toString() {
return delegate.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GrpcClientResponse that = (GrpcClientResponse) o;
return delegate.equals(that.delegate);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
public static final TypeArg __TYPE_ARG = new TypeArg<>( obj -> new GrpcClientResponse((io.vertx.grpc.client.GrpcClientResponse) obj),
GrpcClientResponse::getDelegate
);
private final io.vertx.grpc.client.GrpcClientResponse delegate;
public final TypeArg __typeArg_0;
public final TypeArg __typeArg_1;
public GrpcClientResponse(io.vertx.grpc.client.GrpcClientResponse delegate) {
super(delegate);
this.delegate = delegate;
this.__typeArg_0 = TypeArg.unknown(); this.__typeArg_1 = TypeArg.unknown(); }
public GrpcClientResponse(Object delegate, TypeArg typeArg_0, TypeArg typeArg_1) {
super((io.vertx.grpc.client.GrpcClientResponse)delegate);
this.delegate = (io.vertx.grpc.client.GrpcClientResponse)delegate;
this.__typeArg_0 = typeArg_0;
this.__typeArg_1 = typeArg_1;
}
public io.vertx.grpc.client.GrpcClientResponse getDelegate() {
return delegate;
}
private io.reactivex.Observable observable;
private io.reactivex.Flowable flowable;
public synchronized io.reactivex.Observable toObservable() {
if (observable == null) {
Function conv = (Function) __typeArg_0.wrap;
observable = ObservableHelper.toObservable(delegate, conv);
}
return observable;
}
public synchronized io.reactivex.Flowable toFlowable() {
if (flowable == null) {
Function conv = (Function) __typeArg_0.wrap;
flowable = FlowableHelper.toFlowable(delegate, conv);
}
return flowable;
}
/**
* Pause this stream and return a to transfer the elements of this stream to a destination .
*
* The stream will be resumed when the pipe will be wired to a WriteStream
.
* @return a pipe
*/
public io.vertx.reactivex.core.streams.Pipe pipe() {
io.vertx.reactivex.core.streams.Pipe ret = io.vertx.reactivex.core.streams.Pipe.newInstance((io.vertx.core.streams.Pipe)delegate.pipe(), __typeArg_1);
return ret;
}
/**
* Pipe this ReadStream
to the WriteStream
.
*
* Elements emitted by this stream will be written to the write stream until this stream ends or fails.
* @param dst the destination write stream
* @return a future notified when the write stream will be ended with the outcome
*/
public io.vertx.core.Future pipeTo(io.vertx.reactivex.core.streams.WriteStream dst) {
io.vertx.core.Future ret = delegate.pipeTo(dst.getDelegate()).map(val -> val);
return ret;
}
/**
* Pipe this ReadStream
to the WriteStream
.
*
* Elements emitted by this stream will be written to the write stream until this stream ends or fails.
* @param dst the destination write stream
* @return a future notified when the write stream will be ended with the outcome
*/
public io.reactivex.Completable rxPipeTo(io.vertx.reactivex.core.streams.WriteStream dst) {
return AsyncResultCompletable.toCompletable($handler -> {
this.pipeTo(dst).onComplete($handler);
});
}
/**
* @return the last element of the stream
*/
public io.vertx.core.Future last() {
io.vertx.core.Future ret = delegate.last().map(val -> (Resp)__typeArg_1.wrap(val));
return ret;
}
/**
* @return the last element of the stream
*/
public io.reactivex.Single rxLast() {
return AsyncResultSingle.toSingle($handler -> {
this.last().onComplete($handler);
});
}
/**
* @return the gRPC status or null
when the status has not yet been received
*/
public io.vertx.grpc.common.GrpcStatus status() {
if (cached_0 != null) {
return cached_0;
}
io.vertx.grpc.common.GrpcStatus ret = delegate.status();
cached_0 = ret;
return ret;
}
/**
* @return the gRPC status message of null
when the status has not yet been received or not transmitted
*/
public java.lang.String statusMessage() {
if (cached_1 != null) {
return cached_1;
}
java.lang.String ret = delegate.statusMessage();
cached_1 = ret;
return ret;
}
/**
* @return the to write metadata trailers
*/
public io.vertx.core.MultiMap trailers() {
io.vertx.core.MultiMap ret = delegate.trailers();
return ret;
}
public io.vertx.reactivex.grpc.client.GrpcClientResponse messageHandler(io.vertx.core.Handler handler) {
delegate.messageHandler(new io.vertx.lang.rx.DelegatingHandler<>(handler, event -> io.vertx.reactivex.grpc.common.GrpcMessage.newInstance((io.vertx.grpc.common.GrpcMessage)event)));
return this;
}
public io.vertx.reactivex.grpc.client.GrpcClientResponse errorHandler(io.vertx.core.Handler handler) {
delegate.errorHandler(handler);
return this;
}
public io.vertx.reactivex.grpc.client.GrpcClientResponse exceptionHandler(io.vertx.core.Handler handler) {
delegate.exceptionHandler(handler);
return this;
}
public io.vertx.reactivex.grpc.client.GrpcClientResponse handler(io.vertx.core.Handler handler) {
delegate.handler(new io.vertx.lang.rx.DelegatingHandler<>(handler, event -> (Resp)__typeArg_1.wrap(event)));
return this;
}
public io.vertx.reactivex.grpc.client.GrpcClientResponse endHandler(io.vertx.core.Handler handler) {
delegate.endHandler(handler);
return this;
}
public io.vertx.reactivex.grpc.client.GrpcClientResponse pause() {
delegate.pause();
return this;
}
public io.vertx.reactivex.grpc.client.GrpcClientResponse resume() {
delegate.resume();
return this;
}
public io.vertx.reactivex.grpc.client.GrpcClientResponse fetch(long amount) {
delegate.fetch(amount);
return this;
}
/**
* Set a message handler that is reported with invalid message errors.
*
* Warning: setting this handler overwrite the default handler which takes appropriate measure
* when an invalid message is encountered such as cancelling the stream. This handler should be set
* when control over invalid messages is required.
* @param handler the invalid message handler
* @return a reference to this, so the API can be used fluently
*/
public io.vertx.reactivex.grpc.common.GrpcReadStream invalidMessageHandler(io.vertx.core.Handler handler) {
io.vertx.reactivex.grpc.common.GrpcReadStream ret = io.vertx.reactivex.grpc.common.GrpcReadStream.newInstance((io.vertx.grpc.common.GrpcReadStream)delegate.invalidMessageHandler(handler), __typeArg_1);
return ret;
}
private io.vertx.grpc.common.GrpcStatus cached_0;
private java.lang.String cached_1;
public static GrpcClientResponse newInstance(io.vertx.grpc.client.GrpcClientResponse arg) {
return arg != null ? new GrpcClientResponse(arg) : null;
}
public static GrpcClientResponse newInstance(io.vertx.grpc.client.GrpcClientResponse arg, TypeArg __typeArg_Req, TypeArg __typeArg_Resp) {
return arg != null ? new GrpcClientResponse(arg, __typeArg_Req, __typeArg_Resp) : null;
}
}