summaryrefslogtreecommitdiffstats
path: root/einterfaces
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2017-06-19 08:44:04 -0700
committerGitHub <noreply@github.com>2017-06-19 08:44:04 -0700
commit36f216cb7cb16958d98b3d77e121198596fd2213 (patch)
treeac2a5b79494749b3dffc2f5778092f2529c98d1a /einterfaces
parentfe48987a32fbd600458edd4e81318071ae558ba4 (diff)
downloadchat-36f216cb7cb16958d98b3d77e121198596fd2213.tar.gz
chat-36f216cb7cb16958d98b3d77e121198596fd2213.tar.bz2
chat-36f216cb7cb16958d98b3d77e121198596fd2213.zip
PLT-6080 moving clustering to memberlist (#6499)
* PLT-6080 adding cluster discovery service * Adding memberlist lib * Adding memberlist lib * WIP * WIP * WIP * WIP * Rolling back config changes * Fixing make file * Fixing config for cluster * WIP * Fixing system console for clustering * Fixing default config * Fixing config * Fixing system console for clustering * Tweaking hub setting * Bumping up time * merging vendor dir * Updating vendor dir * Fixing unit test * Fixing bad merge * Remove some testing code * Moving comment * PLT-6868 adding db ping retry * Removing unused loc strings * Adding defer to cancel
Diffstat (limited to 'einterfaces')
-rw-r--r--einterfaces/cluster.go19
1 files changed, 6 insertions, 13 deletions
diff --git a/einterfaces/cluster.go b/einterfaces/cluster.go
index ba780f8b1..096a775fe 100644
--- a/einterfaces/cluster.go
+++ b/einterfaces/cluster.go
@@ -7,26 +7,19 @@ import (
"github.com/mattermost/platform/model"
)
+type ClusterMessageHandler func(msg *model.ClusterMessage)
+
type ClusterInterface interface {
StartInterNodeCommunication()
StopInterNodeCommunication()
+ RegisterClusterMessageHandler(event string, crm ClusterMessageHandler)
+ GetClusterId() string
GetClusterInfos() []*model.ClusterInfo
+ SendClusterMessage(cluster *model.ClusterMessage)
+ NotifyMsg(buf []byte)
GetClusterStats() ([]*model.ClusterStats, *model.AppError)
- ClearSessionCacheForUser(userId string)
- InvalidateCacheForUser(userId string)
- InvalidateCacheForChannel(channelId string)
- InvalidateCacheForChannelByName(teamId, name string)
- InvalidateCacheForChannelMembers(channelId string)
- InvalidateCacheForChannelMembersNotifyProps(channelId string)
- InvalidateCacheForChannelPosts(channelId string)
- InvalidateCacheForWebhook(webhookId string)
- InvalidateCacheForReactions(postId string)
- Publish(event *model.WebSocketEvent)
- UpdateStatus(status *model.Status)
GetLogs(page, perPage int) ([]string, *model.AppError)
- GetClusterId() string
ConfigChanged(previousConfig *model.Config, newConfig *model.Config, sendToOtherServer bool) *model.AppError
- InvalidateAllCaches() *model.AppError
}
var theClusterInterface ClusterInterface