You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package async
|
|
|
|
import "epur-pay/pkg/mq"
|
|
|
|
var Asyncs *AsyncsModel
|
|
|
|
func New() {
|
|
Asyncs = &AsyncsModel{}
|
|
|
|
Asyncs.AfterCallback = &Async{
|
|
Run: AfterCallbackProducer,
|
|
Name: "afterCallback",
|
|
}
|
|
|
|
mq.AysncInstance.
|
|
Consumer(Asyncs.AfterCallback.Name, AfterCallback, 1) //接口After调用
|
|
}
|