views:

28

answers:

2

Hi all, using Quartz.NET it seems like I need to name every job I create. Is there a way it can be automatically 'named', like an auto incrementing ID or something?

A: 

why dont you use a Guid.NewGuid().ToString() when you create your job? Thats what I have done in the past and it worked quite well

Yannis
A: 

I would recommend just passing in the type name when you create the job. Such as myObject.GetType().Name.

phreak3eb