markus / ConvertService / ConverterService / IConverterPDF / RemConverterPDFObject.cs @ fc4e50f2
이력 | 보기 | 이력해설 | 다운로드 (1.16 KB)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
|
6 |
namespace IConverterPDF |
7 |
{ |
8 |
public class RemConverterPDFObject : MarshalByRefObject |
9 |
{ |
10 |
|
11 |
public int MultiProcessCount |
12 |
{ |
13 |
get |
14 |
{ |
15 |
return Cache.GetInstance().MultiProcessCount; |
16 |
} |
17 |
|
18 |
set |
19 |
{ |
20 |
Cache.GetInstance().MultiProcessCount = value; |
21 |
} |
22 |
} |
23 |
|
24 |
public string[] RunningProcessID() |
25 |
{ |
26 |
return Cache.GetInstance().RunningProcessID(); |
27 |
} |
28 |
|
29 |
public ConverterPDFResult SetConverterPDF(string ProjectNo, string ConverterID) |
30 |
{ |
31 |
return Cache.GetInstance().SetConverterPDF(ProjectNo, ConverterID); |
32 |
} |
33 |
|
34 |
public ServiceInfo ServiceInfomation() |
35 |
{ |
36 |
return Cache.GetInstance().ServiceInfomation(); |
37 |
} |
38 |
|
39 |
public TileSorceStorageInfo[] TileSorceStorageInfomation() |
40 |
{ |
41 |
return Cache.GetInstance().TileSorceStorageInfomation(); |
42 |
} |
43 |
|
44 |
public bool ServiceOn(string ServiceID) |
45 |
{ |
46 |
return Cache.GetInstance().ServiceOn(ServiceID); |
47 |
} |
48 |
|
49 |
} |
50 |
} |