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

36 lines
1.0 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)
2016-08-15 16:47:31 +00:00
RemoveAllSessionsForUserId(userId string)
InvalidateCacheForUser(userId string)
2017-01-16 22:59:50 +00:00
InvalidateCacheForChannel(channelId string)
InvalidateCacheForChannelPosts(channelId 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
}