These keywords are used to fine-tune the added capabilities provided by the c-tree Custom Server.
JOB_QUEUE_INFO
JOB_QUEUE_INFO <dll:function@file>
Provides the ability to define a dynamic link library (.DLL or .so) followed by an entry point function within this loadable library that will process a job. The @filename.dat syntax allows you to define the c-tree job file to be processed.
Examples
JOB_QUEUE_INFO MYDLLNAME:myjobfunc@myjobq.dat
Use logic from MYDLLNAME.DLL (or .so), entry point function myjobfunc(), to process data from myjobq.dat
JOB_QUEUE_INFO RTREE@rtree.dat
Use logic from RTREE.DLL (or .so), default entry point of ctdojob(), to process data from rtree.dat
JOB_QUEUE_INFO MTREE@ctjobs
Use logic from MTREE.DLL (or .so), default entry point of ctdojob(), to process data from ctjobs - if ctjobs open fails, try ctjobs.dat
JOB_QUEUE_INFO MYJOBDLL
Use MYJOBDLL.DLL (or .so), default entry point of ctdojob(), to process data from default file ctjobs.dat
DIAGNOSTICS CTUSER_ERROR
DIAGNOSTICS CTUSER_ERROR
Enables errors detected while loading the CTUSER shared library or an error when resolving the function pointer to be logged into CTSTATUS.FCS.
See Also
DIAGNOSTICS CTUSER_VERBOSE
DIAGNOSTICS CTUSER_VERBOSE
Enables verbose information logging to CTSTATUS.FCS while loading the CTUSER shared library or when resolving the function pointer.
See Also
DIAGNOSTICS CUSTOM
DIAGNOSTICS CUSTOM
Enables custom diagnostic options to be added via the Server SDK. See the modules ctopt2.h and ctscfg.c.