From dd2dc7a2b9852b1159104f630d67db7e118f86be Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Tue, 18 Aug 2020 14:05:25 +0100 Subject: [PATCH] Update broker.go --- broker/broker.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/broker/broker.go b/broker/broker.go index b205b903..1b0690e7 100644 --- a/broker/broker.go +++ b/broker/broker.go @@ -14,8 +14,6 @@ type Broker interface { } // Handler is used to process messages via a subscription of a topic. -// The handler is passed a publication interface which contains the -// message and optional Ack method to acknowledge receipt of the message. type Handler func(*Message) error type ErrorHandler func(*Message, error)