exitCtor() public method

public exitCtor ( ) : void
return void
Example #1
0
 public static FacetMeta make(Func func)
 {
     FacetMeta self = new FacetMeta();
       if (func != null)
       {
     func.enterCtor(self);
     func.call(self);
     func.exitCtor();
       }
       return self;
 }
Example #2
0
 public static Serializable make(Func func)
 {
     Serializable self = new Serializable();
       if (func != null)
       {
     func.enterCtor(self);
     func.call(self);
     func.exitCtor();
       }
       return self;
 }
Example #3
0
 public static Deprecated make(Func func)
 {
     Deprecated self = new Deprecated();
       if (func != null)
       {
     func.enterCtor(self);
     func.call(self);
     func.exitCtor();
       }
       return self;
 }
Example #4
0
        public static Deprecated make(Func func)
        {
            Deprecated self = new Deprecated();

            if (func != null)
            {
                func.enterCtor(self);
                func.call(self);
                func.exitCtor();
            }
            return(self);
        }
Example #5
0
        public static FacetMeta make(Func func)
        {
            FacetMeta self = new FacetMeta();

            if (func != null)
            {
                func.enterCtor(self);
                func.call(self);
                func.exitCtor();
            }
            return(self);
        }
Example #6
0
        public static Serializable make(Func func)
        {
            Serializable self = new Serializable();

            if (func != null)
            {
                func.enterCtor(self);
                func.call(self);
                func.exitCtor();
            }
            return(self);
        }
Example #7
0
        public static void make_(ActorPool self, Func itBlock)
        {
            if (itBlock != null)
              {
            itBlock.enterCtor(self);
            itBlock.call(self);
            itBlock.exitCtor();
              }
              if (self.m_maxThreads < 1) throw ArgErr.make("ActorPool.maxThreads must be >= 1, not " + self.m_maxThreads).val;

              self.m_threadPool = new ThreadPool((int)self.m_maxThreads);
              self.m_scheduler = new Scheduler();
        }
Example #8
0
        public static void make_(ActorPool self, Func itBlock)
        {
            if (itBlock != null)
            {
                itBlock.enterCtor(self);
                itBlock.call(self);
                itBlock.exitCtor();
            }
            if (self.m_maxThreads < 1)
            {
                throw ArgErr.make("ActorPool.maxThreads must be >= 1, not " + self.m_maxThreads).val;
            }

            self.m_threadPool = new ThreadPool((int)self.m_maxThreads);
            self.m_scheduler  = new Scheduler();
        }