Add Dryader interface 19/162019/11
authorLukasz Wojciechowski <l.wojciechow@partner.samsung.com>
Mon, 27 Nov 2017 08:15:12 +0000 (09:15 +0100)
committerPawel Wieczorek <p.wieczorek2@samsung.com>
Wed, 18 Apr 2018 16:32:31 +0000 (18:32 +0200)
Dryder interface allows delegation of Job execution and cancelation
to DryadJobManager.

Change-Id: I866f8290dc51d24ab65e2671edf306fc33f2e3c9
Signed-off-by: Lukasz Wojciechowski <l.wojciechow@partner.samsung.com>
controller/dryader.go [new file with mode: 0644]

diff --git a/controller/dryader.go b/controller/dryader.go
new file mode 100644 (file)
index 0000000..479314b
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+ *  Copyright (c) 2017-2018 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License
+ */
+
+// File controller/dryader.go defines interface for delegation and control
+// of Job execution by DryadJobManager.
+
+package controller
+
+import (
+       "git.tizen.org/tools/weles"
+       "git.tizen.org/tools/weles/controller/notifier"
+)
+
+// Dryader defines actions for delegating Jobs to DryadJobManager.
+type Dryader interface {
+       notifier.Notifier
+       // StartJob delegates Job execution to DryadJobManager.
+       StartJob(weles.JobID)
+       // CancelJob stops execution of the Job.
+       CancelJob(weles.JobID)
+}