© 2008 Autodesk
Autodesk Manufacturing Developer’s Camp 2010   Extending Digital Prototyping
Job Processor API
§What does a job look like?
§class IJob {
   Long Id; { get; }
   String VaultName; { get; }
   String JobType; { get; }
   String Description; { get; }
   System.Collections.Generic.Dictionary<String, String> Params; { get; }
}
§
§Params is a collection of Name=Value pairs that provide extra information about the task.
§
§There is no fixed set of parameters; it’s dependant on the Job Type.  In other words, interpretation is the responsibility of the queuing and processing clients
§
§