From b963f83c6a09da1eaf02eb9f269c6f5881a0c711 Mon Sep 17 00:00:00 2001 From: Wim Date: Wed, 16 Aug 2017 23:37:37 +0200 Subject: Update mattermost vendor (3.7 => 4.1) --- .../platform/einterfaces/jobs/data_retention.go | 23 ++++++++++++++++++++++ .../platform/einterfaces/jobs/elasticsearch.go | 22 +++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 vendor/github.com/mattermost/platform/einterfaces/jobs/data_retention.go create mode 100644 vendor/github.com/mattermost/platform/einterfaces/jobs/elasticsearch.go (limited to 'vendor/github.com/mattermost/platform/einterfaces/jobs') diff --git a/vendor/github.com/mattermost/platform/einterfaces/jobs/data_retention.go b/vendor/github.com/mattermost/platform/einterfaces/jobs/data_retention.go new file mode 100644 index 00000000..442f667f --- /dev/null +++ b/vendor/github.com/mattermost/platform/einterfaces/jobs/data_retention.go @@ -0,0 +1,23 @@ +// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +package jobs + +import ( + "github.com/mattermost/platform/model" +) + +type DataRetentionInterface interface { + MakeWorker() model.Worker + MakeScheduler() model.Scheduler +} + +var theDataRetentionInterface DataRetentionInterface + +func RegisterDataRetentionInterface(newInterface DataRetentionInterface) { + theDataRetentionInterface = newInterface +} + +func GetDataRetentionInterface() DataRetentionInterface { + return theDataRetentionInterface +} diff --git a/vendor/github.com/mattermost/platform/einterfaces/jobs/elasticsearch.go b/vendor/github.com/mattermost/platform/einterfaces/jobs/elasticsearch.go new file mode 100644 index 00000000..6d6dbe89 --- /dev/null +++ b/vendor/github.com/mattermost/platform/einterfaces/jobs/elasticsearch.go @@ -0,0 +1,22 @@ +// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. +// See License.txt for license information. + +package jobs + +import ( + "github.com/mattermost/platform/model" +) + +type ElasticsearchIndexerInterface interface { + MakeWorker() model.Worker +} + +var theElasticsearchIndexerInterface ElasticsearchIndexerInterface + +func RegisterElasticsearchIndexerInterface(newInterface ElasticsearchIndexerInterface) { + theElasticsearchIndexerInterface = newInterface +} + +func GetElasticsearchIndexerInterface() ElasticsearchIndexerInterface { + return theElasticsearchIndexerInterface +} -- cgit v1.2.3