public static FacetMeta make(Func func) { FacetMeta self = new FacetMeta(); if (func != null) { func.enterCtor(self); func.call(self); func.exitCtor(); } return self; }
public static Serializable make(Func func) { Serializable self = new Serializable(); if (func != null) { func.enterCtor(self); func.call(self); func.exitCtor(); } return self; }
public static Deprecated make(Func func) { Deprecated self = new Deprecated(); if (func != null) { func.enterCtor(self); func.call(self); func.exitCtor(); } return self; }
public static Deprecated make(Func func) { Deprecated self = new Deprecated(); if (func != null) { func.enterCtor(self); func.call(self); func.exitCtor(); } return(self); }
public static FacetMeta make(Func func) { FacetMeta self = new FacetMeta(); if (func != null) { func.enterCtor(self); func.call(self); func.exitCtor(); } return(self); }
public static Serializable make(Func func) { Serializable self = new Serializable(); if (func != null) { func.enterCtor(self); func.call(self); func.exitCtor(); } return(self); }
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(); }
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(); }