-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJob.cs
36 lines (31 loc) · 762 Bytes
/
Job.cs
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
using System;
using System.Collections.Generic;
using System.Text;
namespace TestConsole
{
public class Job : Emitter
{
public string type;
internal object id;
internal int? retry;
internal bool timeout;
internal bool death;
internal long time;
//internal void emit(string v, object err)
//{
// throw new NotImplementedException();
//}
//internal void emit(string v)
//{
// emit(v, null);
//}
//internal void off()
//{
// throw new NotImplementedException();
//}
//internal void on(string v, Action p)
//{
// throw new NotImplementedException();
//}
}
}