io.vertx.reactivex.sqlclient.RowStream 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.sqlclient;
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 row oriented stream.
*
*
* NOTE: This class has been automatically generated from the {@link io.vertx.sqlclient.RowStream original} non RX-ified interface using Vert.x codegen.
*/
@RxGen(io.vertx.sqlclient.RowStream.class)
public class RowStream implements io.vertx.reactivex.core.streams.ReadStream {
@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;
RowStream that = (RowStream) o;
return delegate.equals(that.delegate);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
public static final TypeArg __TYPE_ARG = new TypeArg<>( obj -> new RowStream((io.vertx.sqlclient.RowStream) obj),
RowStream::getDelegate
);
private final io.vertx.sqlclient.RowStream delegate;
public final TypeArg __typeArg_0;
public RowStream(io.vertx.sqlclient.RowStream delegate) {
this.delegate = delegate;
this.__typeArg_0 = TypeArg.unknown(); }
public RowStream(Object delegate, TypeArg typeArg_0) {
this.delegate = (io.vertx.sqlclient.RowStream)delegate;
this.__typeArg_0 = typeArg_0;
}
public io.vertx.sqlclient.RowStream 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_0);
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);
});
}
public io.vertx.reactivex.sqlclient.RowStream exceptionHandler(io.vertx.core.Handler handler) {
delegate.exceptionHandler(handler);
return this;
}
public io.vertx.reactivex.sqlclient.RowStream handler(io.vertx.core.Handler handler) {
delegate.handler(new io.vertx.lang.rx.DelegatingHandler<>(handler, event -> (T)__typeArg_0.wrap(event)));
return this;
}
public io.vertx.reactivex.sqlclient.RowStream pause() {
delegate.pause();
return this;
}
public io.vertx.reactivex.sqlclient.RowStream resume() {
delegate.resume();
return this;
}
public io.vertx.reactivex.sqlclient.RowStream endHandler(io.vertx.core.Handler endHandler) {
delegate.endHandler(endHandler);
return this;
}
public io.vertx.reactivex.sqlclient.RowStream fetch(long l) {
delegate.fetch(l);
return this;
}
/**
* Close the stream and release the resources.
* @return
*/
public io.vertx.core.Future close() {
io.vertx.core.Future ret = delegate.close().map(val -> val);
return ret;
}
/**
* Close the stream and release the resources.
* @return
*/
public io.reactivex.Completable rxClose() {
return AsyncResultCompletable.toCompletable($handler -> {
this.close().onComplete($handler);
});
}
public static RowStream newInstance(io.vertx.sqlclient.RowStream arg) {
return arg != null ? new RowStream(arg) : null;
}
public static RowStream newInstance(io.vertx.sqlclient.RowStream arg, TypeArg __typeArg_T) {
return arg != null ? new RowStream(arg, __typeArg_T) : null;
}
}