package io.vertx.reactivex.ext.consul;
import java.util.Map;
import io.reactivex.Observable;
import io.reactivex.Flowable;
import io.reactivex.Single;
import io.reactivex.Completable;
import io.reactivex.Maybe;
@io.vertx.lang.rx.RxGen(io.vertx.ext.consul.WatchResult.class)
public class WatchResult<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;
WatchResult that = (WatchResult) o;
return delegate.equals(that.delegate);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
public static final io.vertx.lang.rx.TypeArg<WatchResult> __TYPE_ARG = new io.vertx.lang.rx.TypeArg<>( obj -> new WatchResult((io.vertx.ext.consul.WatchResult) obj),
WatchResult::getDelegate
);
private final io.vertx.ext.consul.WatchResult<T> delegate;
public final io.vertx.lang.rx.TypeArg<T> __typeArg_0;
public WatchResult(io.vertx.ext.consul.WatchResult delegate) {
this.delegate = delegate;
this.__typeArg_0 = io.vertx.lang.rx.TypeArg.unknown(); }
public WatchResult(io.vertx.ext.consul.WatchResult delegate, io.vertx.lang.rx.TypeArg<T> typeArg_0) {
this.delegate = delegate;
this.__typeArg_0 = typeArg_0;
}
public io.vertx.ext.consul.WatchResult getDelegate() {
return delegate;
}
public T prevResult() {
T ret = (T)__typeArg_0.wrap(delegate.prevResult());
return ret;
}
public T nextResult() {
T ret = (T)__typeArg_0.wrap(delegate.nextResult());
return ret;
}
public Throwable cause() {
Throwable ret = delegate.cause();
return ret;
}
public boolean succeeded() {
boolean ret = delegate.succeeded();
return ret;
}
public boolean failed() {
boolean ret = delegate.failed();
return ret;
}
public static <T>WatchResult<T> newInstance(io.vertx.ext.consul.WatchResult arg) {
return arg != null ? new WatchResult<T>(arg) : null;
}
public static <T>WatchResult<T> newInstance(io.vertx.ext.consul.WatchResult arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T) {
return arg != null ? new WatchResult<T>(arg, __typeArg_T) : null;
}
}