parent
61d8989afd
commit
1e98b835de
@ -1,43 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright (C) 2016 AriaLyy(https://github.com/AriaLyy/Aria) |
|
||||||
* |
|
||||||
* 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. |
|
||||||
*/ |
|
||||||
package com.arialyy.aria.core.inf |
|
||||||
|
|
||||||
/** |
|
||||||
* @Author laoyuyu |
|
||||||
* @Description |
|
||||||
* @Date 12:32 PM 2023/1/22 |
|
||||||
**/ |
|
||||||
interface IStartController { |
|
||||||
/** |
|
||||||
* 添加任务 |
|
||||||
* |
|
||||||
* @return 正常添加,返回任务id,否则返回-1 |
|
||||||
*/ |
|
||||||
fun add(): Int |
|
||||||
|
|
||||||
/** |
|
||||||
* 创建并开始任务 |
|
||||||
* |
|
||||||
* @return 正常启动,返回任务id,否则返回-1 |
|
||||||
*/ |
|
||||||
fun start(): Int |
|
||||||
|
|
||||||
/** |
|
||||||
* 恢复任务 |
|
||||||
* @return 正常启动,返回任务id,否则返回-1 |
|
||||||
*/ |
|
||||||
fun resume(): Int |
|
||||||
} |
|
Loading…
Reference in new issue