A couple of questions for the real Quartz gurus out there!
I am a Quartz.net beginner and hoping for some advice before I get burnt:
1) I schedule a bunch of jobs/triggers to go off at specific times in the future. After those tasks are finished I have no more use for the job/trigger information in the database. Is there anything I nee...
Just a few questions:
1: Is there any in depth tutorials online how to use calendars in Quartz? I'm using Quartz.NET but Quartz tutorials would be vastly helpful of course.
2: More importantly, my application needs 2 configuration options. One configuration option is default - every job added runs, but when the scheduler is switched to...
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?
...
Hi, I'm creating a project that is utilizing Quartz.NET (with ADO.NET DB storage). There is the core component, i.e. the component that executes jobs (console application at the moment, will be a Windows Service), plus multiple web forms where users can add jobs and edit job (edit the datamap values to be specific).
I'm having a bit of ...
Hi all, I have a project ongoing at the moment which is create a Windows Service that essentially moves files around multiple paths. A job may be to, every 60 seconds, get all files matching a regular expression from an FTP server and transfer them to a Network Path, and so on. These jobs are stored in an SQL database.
Currently, the se...
Hi,
In relation to question an eralier question of mine, I have tried and failed to create a class with a NSMuttableArray member variable holding CALayerRefs. Can someone please guide me on how to do that. What I want to do is basically create CALayerRefs or CGLayerRefs or whatever, push them into my layers variable, and then, when I nee...
Trying to find the leak in my code I removed all the thing that did not matter, leaving the following code:
static int last_memory = 0;
void report_memory(NSString *name) {
struct task_basic_info info;
mach_msg_type_number_t size = sizeof(info);
kern_return_t kerr = task_info(mach_task_self(),
...
Hello Everyone,
I am after the following functionality in an app I am scoping. A user has the option to enter some set of text that will be overlaid onto a video file as animated text. In other words, the application is bundled with a stock version of the video containing no text, and the custom text entered by the user is used to rende...
Hi
I am pretty new to graphics but I want to create an iphone/ipad app that does free hand drawing. That is as the finger moves, a path is painted. Where do I start (books, resources, etc)? The stuff I see on apple's docs talk about lines and arcs. These are simple. They talk about bezier curves briefly. Is this what I should be looking...