markus / ConvertService / ConverterService / IConverterPDF / RemConverterPDFObject.cs @ 974af55b
이력 | 보기 | 이력해설 | 다운로드 (1.16 KB)
1 | 7ca218b3 | KangIngu | 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 | 32e95118 | KangIngu | public string[] RunningProcessID() |
25 | 7ca218b3 | KangIngu | { |
26 | return Cache.GetInstance().RunningProcessID(); |
||
27 | } |
||
28 | |||
29 | 32e95118 | KangIngu | public ConverterPDFResult SetConverterPDF(string ProjectNo, string ConverterID) |
30 | 7ca218b3 | KangIngu | { |
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 | 32e95118 | KangIngu | public bool ServiceOn(string ServiceID) |
45 | 7ca218b3 | KangIngu | { |
46 | return Cache.GetInstance().ServiceOn(ServiceID); |
||
47 | } |
||
48 | |||
49 | } |
||
50 | } |