bridges.conf

This file defines bridges between destinations.

See Destination Bridges for more information about destination bridges.

The format of the file is:

[destinationType:destinationName] # mandatory -- include brackets
destinationType=destinationToBridgeTo1 [selector="msg-selector"]
destinationType=destinationToBridgeTo2 [selector="msg-selector"]
...

The destination-name can be any specific destination or a wildcard pattern to match multiple destinations.

Parameter Name Description
destinationType The type of the destination. That is, topic or queue.
destinationName The name of the destination.
destinationToBridgeTo One or more names of destinations to which to create a bridge.
selector="msg-selector" This optional property specifies a message selector to limit the messages received by the bridged destination.

For detailed information about message selector syntax, see the ’Message Selectors’ section in description for the Message class in TIBCO Enterprise Message Service Java API Reference.

Example

[topic:myTopic1]
  topic=myTopic2
  queue=myQueue1