gitee.com/woood2/luca@v1.0.4/cmd/consumer/internal/subscriber/msg_handler.go (about)

     1  package subscriber
     2  
     3  import (
     4  	"context"
     5  	"github.com/Shopify/sarama"
     6  )
     7  
     8  type MsgHandler func(ctx context.Context, msg *sarama.ConsumerMessage, retry int) (commit bool)
     9  type MsgMiddleware func(next MsgHandler) MsgHandler