Solace Go API Developer's Guide

The Solace Go API (version 1.10) uses modern development patterns and usability in the form of a native Solace API. The Solace Go API allows your applications to take full advantage of the Solace event broker's feature set.

The Solace Go API utilizes the builder pattern, which allows you to easily create a MessagingService instance with a custom configuration that then connects to an event broker. After a successful connection is established, you can send and receive messages using our Solace Go API. Our Solace Go API allows you to handle scenarios where messages accumulate on internal buffers, referred to as back-pressure. For example, on a client application that sends messages, it is possible to have a scenario where the client application is generating messages faster than the messages can be sent to the event broker, which can happen due to factors such as network congestion.

Here's an overview of how to use the Solace Go API after you've set-up your environment:

  1. Build a MessagingService instance and configure it using properties to:
  2. Send messages to or receive messages from an event broker as follows using:

    During the creation of the message publishers or message consumers, you can configure how to handle when back-pressure occurs. See each section below for more information.

  3. As part of publishing or consuming messages, use OutboundMessage and InboundMessage, and handle errors as required via event handlers.

You can reference various sample applications to understand how to use our Solace Go API. For more information, review sections of this guide along with the Solace Go API reference and Go sample code on the Solace Solace Go API GitHub page.