Hi Community,
I am exploring Solace and its Use Cases.
Using Solace Java API Library we can create a Queue and subscribe a Topic to the Queue.
Using SEMP Java Client Library we can Create and Delete a Queue.
Using SEMP REST API we can create and delete Queue , subscribe a Topic to Queue and can also unsubscribe a Topic from Queue.
I am trying to find a Library (in Java or any language) , using which we can unsubscribe a Topic from Queue. Is there any Library to unsubscribe Topic from Queue ?
Hey @triptesh ! To answer your first question, take a look at this community post to get an idea on how queues and subscriptions are handled in the new Solace PubSub+ Messaging APIs (Java, Python, Go) Persistent receiver with subscription-specific listeners — Solace Community
To get a better idea on using SEMP (whether its the Java client Library of REST API) you can take a look at our tutorials site SEMP Tutorials . In a nutshell, yes it is possible to create and delete a queue using the SEMP java client similar to how you are able to use the SEMP REST API.
Regarding the deletion of subscription from a queue, that can also be achieved using SEMP. The Solace SEMP documentation SEMP API Reference DELETE /msgVpns/{msgVpnName}/queues/{queueName}/subscriptions/{subscriptionTopic}
Hi @Tamimi , Thanks for the response, It was helpful.
To delete a Topic from Queue, we can use SEMP REST API. Can we do the same task using some native Library ?