Files
open-im-server-deploy/pkg/common/storage/cache/online.go
kim.dev.6789 e50142a3b9 复制项目
2026-01-14 22:16:44 +08:00

10 lines
301 B
Go

package cache
import "context"
type OnlineCache interface {
GetOnline(ctx context.Context, userID string) ([]int32, error)
SetUserOnline(ctx context.Context, userID string, online, offline []int32) error
GetAllOnlineUsers(ctx context.Context, cursor uint64) (map[string][]int32, uint64, error)
}