io.vertx.rxjava3.ext.eventbus.bridge.tcp.BridgeEvent 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.rxjava3.ext.eventbus.bridge.tcp;
import io.vertx.rxjava3.RxHelper;
import io.vertx.rxjava3.ObservableHelper;
import io.vertx.rxjava3.FlowableHelper;
import io.vertx.rxjava3.impl.AsyncResultMaybe;
import io.vertx.rxjava3.impl.AsyncResultSingle;
import io.vertx.rxjava3.impl.AsyncResultCompletable;
import io.vertx.rxjava3.WriteStreamObserver;
import io.vertx.rxjava3.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.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;
/**
* Represents an event that occurs on the event bus bridge.
*
* Please consult the documentation for a full explanation.
*
*
* NOTE: This class has been automatically generated from the {@link io.vertx.ext.eventbus.bridge.tcp.BridgeEvent original} non RX-ified interface using Vert.x codegen.
*/
@RxGen(io.vertx.ext.eventbus.bridge.tcp.BridgeEvent.class)
public class BridgeEvent extends io.vertx.rxjava3.ext.bridge.BaseBridgeEvent {
@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;
BridgeEvent that = (BridgeEvent) o;
return delegate.equals(that.delegate);
}
@Override
public int hashCode() {
return delegate.hashCode();
}
public static final TypeArg __TYPE_ARG = new TypeArg<>( obj -> new BridgeEvent((io.vertx.ext.eventbus.bridge.tcp.BridgeEvent) obj),
BridgeEvent::getDelegate
);
private final io.vertx.ext.eventbus.bridge.tcp.BridgeEvent delegate;
public BridgeEvent(io.vertx.ext.eventbus.bridge.tcp.BridgeEvent delegate) {
super(delegate);
this.delegate = delegate;
}
public BridgeEvent(Object delegate) {
super((io.vertx.ext.eventbus.bridge.tcp.BridgeEvent)delegate);
this.delegate = (io.vertx.ext.eventbus.bridge.tcp.BridgeEvent)delegate;
}
public io.vertx.ext.eventbus.bridge.tcp.BridgeEvent getDelegate() {
return delegate;
}
/**
* Set the result. Any handler will be called, if there is one, and the promise will be marked as completed.
*
* Any handler set on the associated promise will be called.
* @param result the result
*/
public void complete(java.lang.Boolean result) {
delegate.complete(result);
}
/**
* Like {@link io.vertx.rxjava3.core.Promise#complete} but returns false
when the promise is already completed instead of throwing
* an {@link java.lang.IllegalStateException}, it returns true
otherwise.
* @param result the result
* @return false
when the future is already completed
*/
public boolean tryComplete(java.lang.Boolean result) {
boolean ret = delegate.tryComplete(result);
return ret;
}
/**
* @return the associated with this promise, it can be used to be aware of the promise completion
*/
public io.vertx.core.Future future() {
if (cached_0 != null) {
return cached_0;
}
io.vertx.core.Future ret = delegate.future().map(val -> val);
cached_0 = ret;
return ret;
}
/**
* Get the raw JSON message for the event. This will be null for SOCKET_CREATED or SOCKET_CLOSED events as there is
* no message involved.
* @param message the raw message
* @return this reference, so it can be used fluently
*/
public io.vertx.rxjava3.ext.eventbus.bridge.tcp.BridgeEvent setRawMessage(io.vertx.core.json.JsonObject message) {
delegate.setRawMessage(message);
return this;
}
/**
* Get the SockJSSocket instance corresponding to the event
* @return the SockJSSocket instance
*/
public io.vertx.rxjava3.core.net.NetSocket socket() {
if (cached_1 != null) {
return cached_1;
}
io.vertx.rxjava3.core.net.NetSocket ret = io.vertx.rxjava3.core.net.NetSocket.newInstance((io.vertx.core.net.NetSocket)delegate.socket());
cached_1 = ret;
return ret;
}
private io.vertx.core.Future cached_0;
private io.vertx.rxjava3.core.net.NetSocket cached_1;
public static BridgeEvent newInstance(io.vertx.ext.eventbus.bridge.tcp.BridgeEvent arg) {
return arg != null ? new BridgeEvent(arg) : null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy