@@ -20,13 +20,14 @@ A lightweight transactional message bus on top of RabbitMQ supporting:
20
20
4 ) Publisher confirms
21
21
5 ) [ Reliable messaging] ( https://github.com/wework/grabbit/blob/master/docs/OUTBOX.md ) and local service transactivity via Transaction Outbox pattern
22
22
6 ) Deadlettering
23
+ 7 ) [ Structured logging] ( https://github.com/wework/grabbit/blob/master/docs/LOGGING.md )
23
24
24
25
Planned:
25
26
26
27
1 ) Deduplication of inbound messages
27
28
28
29
## Stable release
29
- the v1.x branch contains the latest stable releases of grabbit and one should track that branch to get point and minor release updates.
30
+ the v1.x branch contains the latest stable releases of grabbit and one should track that branch to get point and minor release updates.
30
31
31
32
## Supported transactional resources
32
33
1 ) MySql > 8.0 (InnoDB)
@@ -78,8 +79,8 @@ Register a command handler
78
79
``` Go
79
80
80
81
81
- handler := func (invocation gbus.Invocation , message *gbus.BusMessage ) error
82
- cmd , ok := message.Payload .(SomeCommand)
82
+ handler := func (invocation gbus.Invocation , message *gbus.BusMessage ) error {
83
+ cmd , ok := message.Payload .(* SomeCommand)
83
84
if ok {
84
85
fmt.Printf (" handler invoked with message %v " , cmd)
85
86
return nil
@@ -96,7 +97,7 @@ Register an event handler
96
97
97
98
98
99
eventHandler := func (invocation gbus.Invocation , message *gbus.BusMessage ) {
99
- evt , ok := message.Payload .(SomeEvent)
100
+ evt , ok := message.Payload .(* SomeEvent)
100
101
if ok {
101
102
fmt.Printf (" handler invoked with event %v " , evt)
102
103
return nil
0 commit comments