简体   繁体   中英

Is Azure ServiceBusQueueTrigger is comapatble with Tibco EMS?

If ServiceBusQueueTrigger works with Tibco EMS then how can we define the connection details of tibco EMS inside ServiceBusQueueTrigger method? Suppose the method is, it's written in Springboot and I am trying to read message from EMS queue. Does this connection parameter only accepts the AzureServiceBusConnection?

public void serviceBusProcess( @ServiceBusQueueTrigger(name = "msg", queueName = "myQueuename",connection = "????????") String message,
                final ExecutionContext context)
         {
                System.out.println("Received from 1st receiver using ServicebusTrigger<" + message +">");
            
         }

ServiceBusQueueTrigger only supports Azure Service Bus Connection string, you cannot specify Tibco EMS connection string in it

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM