package
0.0.0-20230118092138-5b52905a155c
Repository: https://github.com/packtpublishing/hands-on-software-architecture-with-golang.git
Documentation: pkg.go.dev

# README

Messaging

This package contains the code shown in the messaging chapter (6).

Note : each file is an independent go program, which can be run via 'go run'

Kafka

The code expects Kafka to be running lon localhost:9092 You can do install Kafka on a mac using

brew cask install java
brew install kafka

and then start is using

zkServer start
kafka-server-start.sh /usr/local/etc/kafka/server.properties

nsq

To install and run nsq please see nsq quick start

# Structs

No description provided by the author
Toy message that we want to send.
No description provided by the author
MyMessageHandler is a struct which defines a method to handle messages.
No description provided by the author
No description provided by the author