Package io.vertx.rxjava.ext.bridge
Class BaseBridgeEvent
- java.lang.Object
-
- io.vertx.rxjava.core.Promise<Boolean>
-
- io.vertx.rxjava.ext.bridge.BaseBridgeEvent
-
- Direct Known Subclasses:
BridgeEvent,BridgeEvent
public class BaseBridgeEvent extends Promise<Boolean>
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 theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<BaseBridgeEvent>__TYPE_ARG-
Fields inherited from class io.vertx.rxjava.core.Promise
__typeArg_0
-
-
Constructor Summary
Constructors Constructor Description BaseBridgeEvent(BaseBridgeEvent delegate)BaseBridgeEvent(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcomplete(Boolean result)Set the result.booleanequals(Object o)Future<Boolean>future()BaseBridgeEventgetDelegate()JsonObjectgetRawMessage()Get the raw JSON message for the event.inthashCode()static BaseBridgeEventnewInstance(BaseBridgeEvent arg)BaseBridgeEventsetRawMessage(JsonObject message)Override the raw JSON message for the event.StringtoString()booleantryComplete(Boolean result)LikePromise.complete(T)but returnsfalsewhen the promise is already completed instead of throwing anIllegalStateException, it returnstrueotherwise.BridgeEventTypetype()-
Methods inherited from class io.vertx.rxjava.core.Promise
complete, fail, fail, newInstance, newInstance, promise, tryComplete, tryFail, tryFail
-
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<BaseBridgeEvent> __TYPE_ARG
-
-
Constructor Detail
-
BaseBridgeEvent
public BaseBridgeEvent(BaseBridgeEvent delegate)
-
BaseBridgeEvent
public BaseBridgeEvent(Object delegate)
-
-
Method Detail
-
getDelegate
public BaseBridgeEvent getDelegate()
- Overrides:
getDelegatein classPromise<Boolean>
-
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.
-
tryComplete
public boolean tryComplete(Boolean result)
LikePromise.complete(T)but returnsfalsewhen the promise is already completed instead of throwing anIllegalStateException, it returnstrueotherwise.- Overrides:
tryCompletein classPromise<Boolean>- Parameters:
result- the result- Returns:
falsewhen the future is already completed
-
type
public BridgeEventType type()
- Returns:
- the type of the event
-
getRawMessage
public JsonObject getRawMessage()
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. If the returned message is modified,setRawMessage(io.vertx.core.json.JsonObject)should be called with the new message.- Returns:
- the raw JSON message for the event
-
setRawMessage
public BaseBridgeEvent setRawMessage(JsonObject message)
Override the raw JSON message for the event. It is ideally using it when publish back message from server to client in RECEIVE event- Parameters:
message- the raw message- Returns:
- this reference, so it can be used fluently
-
newInstance
public static BaseBridgeEvent newInstance(BaseBridgeEvent arg)
-
-