Documentation ¶
Index ¶
- Constants
- type Logger
- func (logger *Logger) Debug(args ...interface{})
- func (logger *Logger) Error(args ...interface{})
- func (logger *Logger) Fatal(args ...interface{})
- func (logger *Logger) Info(args ...interface{})
- func (logger *Logger) Print(level zerolog.Level, args ...interface{})
- func (logger *Logger) Printf(ctx context.Context, format string, v ...interface{})
- func (logger *Logger) Warn(args ...interface{})
- type PayloadSendVerifyEmail
- type RedisTaskDistributor
- type RedisTaskProcessor
- type TaskDistributor
- type TaskProcessor
Constants ¶
View Source
const ( QueueCritical = "critical" QueueDefault = "default" )
View Source
const TaskSendVeryEmail = "task:send_verify_email"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PayloadSendVerifyEmail ¶
type PayloadSendVerifyEmail struct {
Username string `json:"username"`
}
PayloadSendVerifyEmail is the payload for sending a verification email.
type RedisTaskDistributor ¶
type RedisTaskDistributor struct {
// contains filtered or unexported fields
}
func (*RedisTaskDistributor) DistributeTaskSendVerifyEmail ¶
func (distributor *RedisTaskDistributor) DistributeTaskSendVerifyEmail( ctx context.Context, payload PayloadSendVerifyEmail, opts ...asynq.Option, ) error
DistributeTaskSendVerifyEmail distributes a task, and send a verification email.
type RedisTaskProcessor ¶
type RedisTaskProcessor struct {
// contains filtered or unexported fields
}
func (*RedisTaskProcessor) ProcessTaskSendVerifyEmail ¶
func (processor *RedisTaskProcessor) ProcessTaskSendVerifyEmail(ctx context.Context, task *asynq.Task) error
ProcessTaskSendVerifyEmail processes a task, and send a verification email.
func (*RedisTaskProcessor) Start ¶
func (processor *RedisTaskProcessor) Start() error
Start starts the RedisTaskProcessor
type TaskDistributor ¶
type TaskDistributor interface { // DistributeTask() // SendEmail() // VerifyEmail() DistributeTaskSendVerifyEmail( ctx context.Context, payload PayloadSendVerifyEmail, opts ...asynq.Option, ) error }
TaskDistributor
func NewRedisTaskDistributor ¶
func NewRedisTaskDistributor(redisOpt asynq.RedisClientOpt) TaskDistributor
NewRedisTaskDistributor creates a new RedisTaskDistributor
type TaskProcessor ¶
type TaskProcessor interface { Start() error ProcessTaskSendVerifyEmail(ctx context.Context, task *asynq.Task) error }
func NewRedisTaskProcessor ¶
func NewRedisTaskProcessor(redisOpt asynq.RedisClientOpt, store db.Store, mailer mail.EmailSender) TaskProcessor
NewRedisTaskProcessor creates a new RedisTaskProcessor
Source Files ¶
Click to show internal directories.
Click to hide internal directories.