markus / ConvertService / ServiceBase / IServiceBase / IServiceBase.cs @ 5a954acc
이력 | 보기 | 이력해설 | 다운로드 (563 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Threading.Tasks; |
6 |
|
7 |
namespace Markus.Service.Interface |
8 |
{ |
9 |
public interface IConvertServiceBase<T> |
10 |
{ |
11 |
/// <summary> |
12 |
/// 작업시작 |
13 |
/// </summary> |
14 |
/// <returns></returns> |
15 |
Message.SaveResult SetFile(T param); |
16 |
|
17 |
Task<Message.SaveResult> SaveFileAsync(ConvertItem param); |
18 |
|
19 |
/// <summary> |
20 |
/// 작업 중지 |
21 |
/// </summary> |
22 |
/// <returns></returns> |
23 |
bool Stop(); |
24 |
} |
25 |
} |