Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to define say 4 functions in our job class (which implements the IJob interface) and use them dynamically in quartz_jobs.xml file.

Right now the only way is to put business logic in the Execute method. But I want to define my own methods and use that name in <job-type> tag. Like say I defined 2 methods SendMail1() and SendMail2() and no execute method is there in my job class. Now I want to call it like:

<job-type>
    ClassLibrary1.Class1.SendMail1, ClassLibrary1
</job-type>

Requirement is urgent. If anybody has any idea, please send it.

Thanks in advance, Akki J

share|improve this question
I removed your email address from the post. Answers should be posted here. It doesn't help SO for answers to be sent directly in email. – Amy Jun 1 '11 at 17:16
no problems, i copied the link and can check periodically here only – Akki J Jun 3 '11 at 5:36

1 Answer

Add additional methods to your class as you describe.

In your Execute method use one of your job data values to determine which other method to call.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.