io.vertx.rx.java.WriteStreamSubscriber Maven / Gradle / Ivy
/*
* Copyright 2018 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.rx.java;
import rx.Subscriber;
import rx.functions.Action0;
import rx.functions.Action1;
/**
* A {@link io.vertx.core.streams.WriteStream} to {@link Subscriber} adapter.
*
* @author Thomas Segismont
*/
public abstract class WriteStreamSubscriber extends Subscriber {
/**
* Sets the handler to invoke if the {@link rx.Observable} that was subscribed to terminates with an error.
*
* The underlying {@link io.vertx.core.streams.WriteStream#end()} method is not invoked in this case.
*
* @return a reference to this, so the API can be used fluently
*/
public abstract WriteStreamSubscriber onError(Action1 handler);
/**
* Sets the handler to invoke if the adapted {@link io.vertx.core.streams.WriteStream} fails.
*
* The underlying {@link io.vertx.core.streams.WriteStream#end()} method is not invoked in this case.
*
* @return a reference to this, so the API can be used fluently
*/
public abstract WriteStreamSubscriber onWriteStreamError(Action1 handler);
/**
* Sets the handler to invoke when the adapted {@link io.vertx.core.streams.WriteStream} ends successfully.
*
* @return a reference to this, so the API can be used fluently
*/
public abstract WriteStreamSubscriber onWriteStreamEnd(Action0 handler);
/**
* Sets the handler to invoke when the adapted {@link io.vertx.core.streams.WriteStream} ends with an error.
*
* @return a reference to this, so the API can be used fluently
*/
public abstract WriteStreamSubscriber onWriteStreamEndError(Action1 handler);
}