Proper way to dispose of Quartz.NET?
        Posted  
        
            by Seth Spearman
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Seth Spearman
        
        
        
        Published on 2010-06-07T19:12:38Z
        Indexed on 
            2010/06/07
            19:22 UTC
        
        
        Read the original article
        Hit count: 614
        
I am using Quartz.NET in an application. What is the proper way to dispose of Quartz.NET.
Right now I am just doing
    if (_quartzScheduler != null)
    {
        _quartzScheduler = null;
    }
Is that enough or should I implement a dispose or something in the jobType class?
Seth
© Stack Overflow or respective owner