open-im-server/pkg/common/storage/cache/seq_conversation.go
withchao a2a28b43c5 seq
2024-06-18 16:46:06 +08:00

11 lines
364 B
Go

package cache
import "context"
type SeqConversationCache interface {
Malloc(ctx context.Context, conversationID string, size int64) (int64, error)
GetMaxSeq(ctx context.Context, conversationID string) (int64, error)
SetMinSeq(ctx context.Context, conversationID string, seq int64) error
GetMinSeq(ctx context.Context, conversationID string) (int64, error)
}