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.
29 lines
848 B
29 lines
848 B
package localcache
|
|
|
|
import (
|
|
discoveryRegistry "Open_IM/pkg/discoveryregistry"
|
|
"context"
|
|
"sync"
|
|
)
|
|
|
|
type ConversationLocalCacheInterface interface {
|
|
GetRecvMsgNotNotifyUserIDs(ctx context.Context, groupID string) ([]string, error)
|
|
}
|
|
|
|
type ConversationLocalCache struct {
|
|
lock sync.Mutex
|
|
SuperGroupRecvMsgNotNotifyUserIDs map[string][]string
|
|
client discoveryRegistry.SvcDiscoveryRegistry
|
|
}
|
|
|
|
func NewConversationLocalCache(client discoveryRegistry.SvcDiscoveryRegistry) ConversationLocalCache {
|
|
return ConversationLocalCache{
|
|
SuperGroupRecvMsgNotNotifyUserIDs: make(map[string][]string, 0),
|
|
client: client,
|
|
}
|
|
}
|
|
|
|
func (g *ConversationLocalCache) GetRecvMsgNotNotifyUserIDs(ctx context.Context, groupID string) ([]string, error) {
|
|
return []string{}, nil
|
|
}
|