/*
 * 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.rxjava.sqlclient;

import rx.Observable;
import rx.Single;
import io.vertx.rx.java.RxHelper;
import io.vertx.rx.java.WriteStreamSubscriber;
import io.vertx.rx.java.SingleOnSubscribeAdapter;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Iterator;
import java.util.function.Function;
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 original non RX-ified interface using Vert.x codegen.
/** * A row oriented stream. * * <p/> * 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<T> implements io.vertx.rxjava.core.streams.ReadStream<T> { @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<RowStream> __TYPE_ARG = new TypeArg<>( obj -> new RowStream((io.vertx.sqlclient.RowStream) obj), RowStream::getDelegate ); private final io.vertx.sqlclient.RowStream<T> delegate; public final TypeArg<T> __typeArg_0; public RowStream(io.vertx.sqlclient.RowStream delegate) { this.delegate = delegate; this.__typeArg_0 = TypeArg.unknown(); } public RowStream(Object delegate, TypeArg<T> typeArg_0) { this.delegate = (io.vertx.sqlclient.RowStream)delegate; this.__typeArg_0 = typeArg_0; } public io.vertx.sqlclient.RowStream getDelegate() { return delegate; } private Observable<T> observable; public synchronized Observable<T> toObservable() { if (observable == null) { Function<T, T> conv = (Function<T, T>) __typeArg_0.wrap; observable = RxHelper.toObservable(delegate, conv); } return observable; }
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.
Returns:a pipe
/** * Pause this stream and return a to transfer the elements of this stream to a destination . * <p/> * The stream will be resumed when the pipe will be wired to a <code>WriteStream</code>. * @return a pipe */
public io.vertx.rxjava.core.streams.Pipe<T> pipe() { io.vertx.rxjava.core.streams.Pipe<T> ret = io.vertx.rxjava.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.

Once this stream has ended or failed, the write stream will be ended and the handler will be called with the result.

Params:
  • dst – the destination write stream
  • handler –
/** * Pipe this <code>ReadStream</code> to the <code>WriteStream</code>. * <p> * Elements emitted by this stream will be written to the write stream until this stream ends or fails. * <p> * Once this stream has ended or failed, the write stream will be ended and the <code>handler</code> will be * called with the result. * @param dst the destination write stream * @param handler */
public void pipeTo(io.vertx.rxjava.core.streams.WriteStream<T> dst, Handler<AsyncResult<Void>> handler) { delegate.pipeTo(dst.getDelegate(), handler); }
Pipe this ReadStream to the WriteStream.

Elements emitted by this stream will be written to the write stream until this stream ends or fails.

Once this stream has ended or failed, the write stream will be ended and the handler will be called with the result.

Params:
  • dst – the destination write stream
/** * Pipe this <code>ReadStream</code> to the <code>WriteStream</code>. * <p> * Elements emitted by this stream will be written to the write stream until this stream ends or fails. * <p> * Once this stream has ended or failed, the write stream will be ended and the <code>handler</code> will be * called with the result. * @param dst the destination write stream */
public void pipeTo(io.vertx.rxjava.core.streams.WriteStream<T> dst) { pipeTo(dst, ar -> { }); }
Pipe this ReadStream to the WriteStream.

Elements emitted by this stream will be written to the write stream until this stream ends or fails.

Once this stream has ended or failed, the write stream will be ended and the handler will be called with the result.

Params:
  • dst – the destination write stream
Returns:
/** * Pipe this <code>ReadStream</code> to the <code>WriteStream</code>. * <p> * Elements emitted by this stream will be written to the write stream until this stream ends or fails. * <p> * Once this stream has ended or failed, the write stream will be ended and the <code>handler</code> will be * called with the result. * @param dst the destination write stream * @return */
public Single<Void> rxPipeTo(io.vertx.rxjava.core.streams.WriteStream<T> dst) { return Single.create(new SingleOnSubscribeAdapter<>(fut -> { pipeTo(dst, fut); })); } public io.vertx.rxjava.sqlclient.RowStream<T> exceptionHandler(Handler<java.lang.Throwable> handler) { delegate.exceptionHandler(handler); return this; } public io.vertx.rxjava.sqlclient.RowStream<T> handler(Handler<T> handler) { delegate.handler(new Handler<T>() { public void handle(T event) { handler.handle((T)__typeArg_0.wrap(event)); } }); return this; } public io.vertx.rxjava.sqlclient.RowStream<T> pause() { delegate.pause(); return this; } public io.vertx.rxjava.sqlclient.RowStream<T> resume() { delegate.resume(); return this; } public io.vertx.rxjava.sqlclient.RowStream<T> endHandler(Handler<Void> endHandler) { delegate.endHandler(endHandler); return this; } public io.vertx.rxjava.sqlclient.RowStream<T> fetch(long l) { delegate.fetch(l); return this; }
Close the stream and release the resources.
Params:
  • completionHandler – the completion handler for this operation
/** * Close the stream and release the resources. * @param completionHandler the completion handler for this operation */
public void close(Handler<AsyncResult<Void>> completionHandler) { delegate.close(completionHandler); }
Close the stream and release the resources.
/** * Close the stream and release the resources. */
public void close() { close(ar -> { }); }
Close the stream and release the resources.
Returns:
/** * Close the stream and release the resources. * @return */
public Single<Void> rxClose() { return Single.create(new SingleOnSubscribeAdapter<>(fut -> { close(fut); })); } public static <T> RowStream<T> newInstance(io.vertx.sqlclient.RowStream arg) { return arg != null ? new RowStream<T>(arg) : null; } public static <T> RowStream<T> newInstance(io.vertx.sqlclient.RowStream arg, TypeArg<T> __typeArg_T) { return arg != null ? new RowStream<T>(arg, __typeArg_T) : null; } }