Tagged Questions
1
vote
1answer
533 views
How to make Quartz.net job to run in a single-threaded apartment?
I simply tried this:
public class FooJob : IJob
{
public FooJob() { }
public void Execute(JobExecutionContext context)
{
Thread.CurrentThread.SetApartmentState(ApartmentState.STA);
}
}
...