Package pubsub provides an easy way to publish and receive Google Cloud Pub/Sub messages, hiding the details of the underlying server RPCs (Remote Procedure Calls). Google Cloud Pub/Sub is a many-to-many, asynchronous messaging system that decouples senders and receivers. Publishing Google Cloud Pub/Sub messages are published to topics. Topics may be created using the pubsub package like: topic, err … Continue reading Google Cloud Pub/Sub messages using Go package : pubsub
Tag: GCP
Can Spring Boot Microservices Communicate Through GCP Pub/Sub? Explore Now!
In this post, we will learn how to use GCP (Google Cloud Platform's) Pub/Sub service with the Spring Boot application. We will create two simple applications, sender and receiver. We will send a message to a sender application which will publish the message to a Topic and receiver application will receive the message by subscribing … Continue reading Can Spring Boot Microservices Communicate Through GCP Pub/Sub? Explore Now!