mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
11 lines
145 B
Go
11 lines
145 B
Go
package queue
|
|
|
|
type (
|
|
Consumer interface {
|
|
Consume(string) error
|
|
OnEvent(event interface{})
|
|
}
|
|
|
|
ConsumerFactory func() (Consumer, error)
|
|
)
|