-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPythonJobPool.cs
More file actions
48 lines (43 loc) · 1.31 KB
/
Copy pathPythonJobPool.cs
File metadata and controls
48 lines (43 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PythonJobServerLibrary
{
public class PythonJobPool
{
/* List Of All The Jobs Posted By All The Clients */
public static List<PythonJob> jobPool = new List<PythonJob>();
public static List<PythonJob> getAllJobs()
{
return jobPool;
}
public static void addJobToPool(PythonJob pythonJob)
{
jobPool.Add(pythonJob);
}
public static void updateJobInPool(PythonJob pythonJob)
{
foreach (var job in jobPool)
{
if (job.jobNumber == pythonJob.jobNumber)
{
job.jobRequested = pythonJob.jobRequested;
job.result = pythonJob.result;
}
}
}
public static void removeJobFromPool(PythonJob pythonJob)
{
//this.jobPool.Remove(pythonJob); // This will cause a problem if two jobs are same
foreach(var job in jobPool)
{
if(job.jobNumber == pythonJob.jobNumber)
{
jobPool.Remove(job);
}
}
}
}
}