mirror of https://github.com/rocboss/paopao-ce
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.
38 lines
683 B
38 lines
683 B
package core
|
|
|
|
const (
|
|
IdxActNop IndexActionT = iota + 1
|
|
IdxActCreatePost
|
|
IdxActUpdatePost
|
|
IdxActDeletePost
|
|
IdxActStickPost
|
|
IdxActVisiblePost
|
|
)
|
|
|
|
type IndexActionT uint8
|
|
|
|
func (a IndexActionT) String() string {
|
|
switch a {
|
|
case IdxActNop:
|
|
return "no operator"
|
|
case IdxActCreatePost:
|
|
return "create post"
|
|
case IdxActUpdatePost:
|
|
return "update post"
|
|
case IdxActDeletePost:
|
|
return "delete post"
|
|
case IdxActStickPost:
|
|
return "stick post"
|
|
case IdxActVisiblePost:
|
|
return "visible post"
|
|
default:
|
|
return "unknow action"
|
|
}
|
|
}
|
|
|
|
// CacheIndexService cache index service interface
|
|
type CacheIndexService interface {
|
|
IndexPostsService
|
|
SendAction(active IndexActionT)
|
|
}
|