-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExampleFilterAttribute.cs
More file actions
46 lines (37 loc) · 1.11 KB
/
Copy pathExampleFilterAttribute.cs
File metadata and controls
46 lines (37 loc) · 1.11 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
using Hangfire.Client;
using Hangfire.Common;
using Hangfire.Server;
using Hangfire.States;
using Hangfire.Storage;
namespace HangfireDemo;
public class ExampleFilterAttribute : JobFilterAttribute, IClientFilter, IServerFilter, IElectStateFilter, IApplyStateFilter
{
public void OnCreated(CreatedContext context)
{
throw new NotImplementedException();
}
public void OnCreating(CreatingContext context)
{
throw new NotImplementedException();
}
public void OnPerformed(PerformedContext context)
{
throw new NotImplementedException();
}
public void OnPerforming(PerformingContext context)
{
throw new NotImplementedException();
}
public void OnStateApplied(ApplyStateContext context, IWriteOnlyTransaction transaction)
{
throw new NotImplementedException();
}
public void OnStateElection(ElectStateContext context)
{
throw new NotImplementedException();
}
public void OnStateUnapplied(ApplyStateContext context, IWriteOnlyTransaction transaction)
{
throw new NotImplementedException();
}
}