Class BridgeOptions
java.lang.Object
io.vertx.ext.bridge.BridgeOptions
io.vertx.ext.stomp.BridgeOptions
Specify the event bus bridge options.
- Author:
- Clement Escoffier
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddInboundPermitted(PermittedOptions permitted) Adds an inbound permitted option to the currentBridgeOptions.addOutboundPermitted(PermittedOptions permitted) Adds an outbound permitted option to the currentBridgeOptions.booleansetInboundPermitteds(List<PermittedOptions> inboundPermitted) Sets the list of inbound permitted options.setOutboundPermitteds(List<PermittedOptions> outboundPermitted) Sets the list of outbound permitted options.setPointToPoint(boolean v) toJson()Serializes the currentBridgeOptionsto JSON.Methods inherited from class BridgeOptions
getInboundPermitteds, getOutboundPermitteds
-
Field Details
-
DEFAULT_POINT_TO_POINT
public static final boolean DEFAULT_POINT_TO_POINT- See Also:
-
-
Constructor Details
-
BridgeOptions
public BridgeOptions() -
BridgeOptions
-
BridgeOptions
-
-
Method Details
-
toJson
Description copied from class:BridgeOptionsSerializes the currentBridgeOptionsto JSON. This method uses the generated converter.- Overrides:
toJsonin classBridgeOptions- Returns:
- the serialized object
-
setPointToPoint
-
isPointToPoint
public boolean isPointToPoint() -
setInboundPermitteds
Description copied from class:BridgeOptionsSets the list of inbound permitted options.- Overrides:
setInboundPermittedsin classBridgeOptions- Parameters:
inboundPermitted- the list to use, must not be}. This method use the direct list reference (and doesn't create a copy).invalid @link
{@link null- Returns:
- the current
BridgeOptions.
-
setOutboundPermitteds
Description copied from class:BridgeOptionsSets the list of outbound permitted options.- Overrides:
setOutboundPermittedsin classBridgeOptions- Parameters:
outboundPermitted- the list to use, must not be}. This method use the direct list reference (and doesn't create a copy).invalid @link
{@link null- Returns:
- the current
BridgeOptions.
-
addInboundPermitted
Description copied from class:BridgeOptionsAdds an inbound permitted option to the currentBridgeOptions.- Overrides:
addInboundPermittedin classBridgeOptions- Parameters:
permitted- the inbound permitted- Returns:
- the current
BridgeOptions.
-
addOutboundPermitted
Description copied from class:BridgeOptionsAdds an outbound permitted option to the currentBridgeOptions.- Overrides:
addOutboundPermittedin classBridgeOptions- Parameters:
permitted- the outbound permitted- Returns:
- the current
BridgeOptions.
-