5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 12:32:30 +00:00
matterbridge/vendor/github.com/mattermost/platform/einterfaces/cluster.go

41 lines
1.3 KiB
Go
Raw Normal View History

2016-08-15 16:47:31 +00:00
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package einterfaces
import (
"github.com/mattermost/platform/model"
)
type ClusterInterface interface {
StartInterNodeCommunication()
StopInterNodeCommunication()
GetClusterInfos() []*model.ClusterInfo
2017-01-16 22:59:50 +00:00
GetClusterStats() ([]*model.ClusterStats, *model.AppError)
2017-03-25 20:04:10 +00:00
ClearSessionCacheForUser(userId string)
2016-08-15 16:47:31 +00:00
InvalidateCacheForUser(userId string)
2017-01-16 22:59:50 +00:00
InvalidateCacheForChannel(channelId string)
2017-03-25 20:04:10 +00:00
InvalidateCacheForChannelByName(teamId, name string)
InvalidateCacheForChannelMembers(channelId string)
InvalidateCacheForChannelMembersNotifyProps(channelId string)
2017-01-16 22:59:50 +00:00
InvalidateCacheForChannelPosts(channelId string)
2017-03-25 20:04:10 +00:00
InvalidateCacheForWebhook(webhookId string)
InvalidateCacheForReactions(postId string)
2016-08-15 16:47:31 +00:00
Publish(event *model.WebSocketEvent)
UpdateStatus(status *model.Status)
GetLogs() ([]string, *model.AppError)
GetClusterId() string
ConfigChanged(previousConfig *model.Config, newConfig *model.Config, sendToOtherServer bool) *model.AppError
2017-01-16 22:59:50 +00:00
InvalidateAllCaches() *model.AppError
2016-08-15 16:47:31 +00:00
}
var theClusterInterface ClusterInterface
func RegisterClusterInterface(newInterface ClusterInterface) {
theClusterInterface = newInterface
}
func GetClusterInterface() ClusterInterface {
return theClusterInterface
}