Class BridgeEvent
- java.lang.Object
-
- io.vertx.rxjava3.core.Promise<Boolean>
-
- io.vertx.rxjava3.ext.bridge.BaseBridgeEvent
-
- io.vertx.rxjava3.ext.web.handler.sockjs.BridgeEvent
-
public class BridgeEvent extends BaseBridgeEvent
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
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<BridgeEvent>
__TYPE_ARG
-
Fields inherited from class io.vertx.rxjava3.core.Promise
__typeArg_0
-
-
Constructor Summary
Constructors Constructor Description BridgeEvent(BridgeEvent delegate)
BridgeEvent(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
complete(Boolean result)
Set the result.void
complete(Boolean result, Throwable failure)
boolean
equals(Object o)
Single<Boolean>
future()
BridgeEvent
getDelegate()
void
handle(AsyncResult<Boolean> asyncResult)
Succeed or fail this promise with the event.int
hashCode()
static BridgeEvent
newInstance(BridgeEvent arg)
Single<Boolean>
rxFuture()
BridgeEvent
setRawMessage(JsonObject message)
Set the raw JSON message for the event.SockJSSocket
socket()
Get the SockJSSocket instance corresponding to the eventvoid
succeed(Boolean result)
String
toString()
boolean
tryComplete(Boolean result)
LikePromise.complete(T, java.lang.Throwable)
but returnsfalse
when the promise is already completed instead of throwing anIllegalStateException
, it returnstrue
otherwise.-
Methods inherited from class io.vertx.rxjava3.ext.bridge.BaseBridgeEvent
getRawMessage, newInstance, type
-
Methods inherited from class io.vertx.rxjava3.core.Promise
complete, fail, fail, newInstance, newInstance, promise, succeed, tryComplete, tryFail, tryFail
-
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<BridgeEvent> __TYPE_ARG
-
-
Constructor Detail
-
BridgeEvent
public BridgeEvent(BridgeEvent delegate)
-
BridgeEvent
public BridgeEvent(Object delegate)
-
-
Method Detail
-
toString
public String toString()
- Overrides:
toString
in classBaseBridgeEvent
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classBaseBridgeEvent
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classBaseBridgeEvent
-
getDelegate
public BridgeEvent getDelegate()
- Overrides:
getDelegate
in classBaseBridgeEvent
-
complete
public void complete(Boolean result, Throwable failure)
- Overrides:
complete
in classBaseBridgeEvent
-
complete
public void complete(Boolean result)
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.- Overrides:
complete
in classBaseBridgeEvent
- Parameters:
result
- the result
-
succeed
public void succeed(Boolean result)
- Overrides:
succeed
in classBaseBridgeEvent
-
tryComplete
public boolean tryComplete(Boolean result)
LikePromise.complete(T, java.lang.Throwable)
but returnsfalse
when the promise is already completed instead of throwing anIllegalStateException
, it returnstrue
otherwise.- Overrides:
tryComplete
in classBaseBridgeEvent
- Parameters:
result
- the result- Returns:
false
when the future is already completed
-
future
public Single<Boolean> future()
- Overrides:
future
in classBaseBridgeEvent
- Returns:
- the associated with this promise, it can be used to be aware of the promise completion
-
rxFuture
public Single<Boolean> rxFuture()
- Overrides:
rxFuture
in classBaseBridgeEvent
- Returns:
- the associated with this promise, it can be used to be aware of the promise completion
-
setRawMessage
public BridgeEvent setRawMessage(JsonObject message)
Set the raw JSON message for the event.- Overrides:
setRawMessage
in classBaseBridgeEvent
- Parameters:
message
- the raw message- Returns:
- this reference, so it can be used fluently
-
socket
public SockJSSocket socket()
Get the SockJSSocket instance corresponding to the event- Returns:
- the SockJSSocket instance
-
handle
public void handle(AsyncResult<Boolean> asyncResult)
Succeed or fail this promise with the event.- Overrides:
handle
in classBaseBridgeEvent
- Parameters:
asyncResult
- the async result to handle
-
newInstance
public static BridgeEvent newInstance(BridgeEvent arg)
-
-