Beispiel #1
0
        public FrontEndJobMgrClass(FrontEndFabricClass fabric_object_val)
        {
            this.frontEndFabricObject = fabric_object_val;

            this.nextAvailableJobId = 0;
            this.setMaxAllowedJobId(Protocols.FabricFrontEndProtocolClass.AJAX_MAPING_ID_SIZE);

            this.maxJobArrayIndex = 0;
            this.jobArray         = new FrontEndJobClass[MAX_AJAX_ENTRY_ARRAY_SIZE];
        }
Beispiel #2
0
 public FrontEndRootClass()
 {
     this.frontEndFabricObject = new FrontEndFabricClass(this);
 }