Esempio n. 1
0
 def __init__(self):
     """__init__(mt::ThreadGroup self) -> ThreadGroup"""
     this = _mt.new_ThreadGroup()
     try:
         self.this.append(this)
     except __builtin__.Exception:
         self.this = this
Esempio n. 2
0
File: mt.py Progetto: mdaus/nitro
 def __init__(self):
     """__init__(mt::ThreadGroup self) -> ThreadGroup"""
     this = _mt.new_ThreadGroup()
     try:
         self.this.append(this)
     except __builtin__.Exception:
         self.this = this
Esempio n. 3
0
 def __init__(self, *args):
     """
     __init__(mt::ThreadGroup self, bool pinToCPU) -> ThreadGroup
     __init__(mt::ThreadGroup self) -> ThreadGroup
     """
     this = _mt.new_ThreadGroup(*args)
     try:
         self.this.append(this)
     except __builtin__.Exception:
         self.this = this
Esempio n. 4
0
 def __init__(self, *args):
     r"""__init__(ThreadGroup self, bool pinToCPU=getDefaultPinToCPU()) -> ThreadGroup"""
     _mt.ThreadGroup_swiginit(self, _mt.new_ThreadGroup(*args))