예제 #1
0
 def __init__(self, time_source=the_reactor):
     self.__interesting_objects = CellDict(dynamic=True)
     CollectionState.__init__(self, self.__interesting_objects)
     self.__objects = {}
     self.__expiry_times = {}
     self.__time_source = IReactorTime(time_source)
     self.__flush_call = None
예제 #2
0
 def __init__(self, time_source=the_reactor):
     self.__interesting_objects = CellDict(dynamic=True)
     CollectionState.__init__(self, self.__interesting_objects)
     self.__objects = {}
     self.__expiry_times = {}
     self.__time_source = IReactorTime(time_source)
     self.__flush_call = None
예제 #3
0
 def __init__(self, time_source=the_reactor):
     self.__interesting_objects = {}
     CollectionState.__init__(self,
                              self.__interesting_objects,
                              dynamic=True)
     self.__objects = {}
     self.__expiry_times = {}
     self.__time_source = IReactorTime(time_source)
예제 #4
0
파일: top.py 프로젝트: shadown/shinysdr
	def __init__(self, table, top):
		CollectionState.__init__(self, table, dynamic=True)
		self.__top = top
예제 #5
0
파일: top.py 프로젝트: vpoluyaktov/shinysdr
 def __init__(self, table, top):
     CollectionState.__init__(self, table)
     self.__top = top
예제 #6
0
파일: __init__.py 프로젝트: langxj/shinysdr
 def __init__(self):
     self.__stations = {}
     CollectionState.__init__(self, self.__stations, dynamic=True)
예제 #7
0
파일: top.py 프로젝트: kpreid/shinysdr
 def __init__(self, table, top):
     CollectionState.__init__(self, table)
     self.__top = top
예제 #8
0
 def __init__(self):
     self.__aircraft = {}
     self.__interesting_aircraft = {}
     CollectionState.__init__(self, self.__interesting_aircraft, dynamic=True)
예제 #9
0
 def __init__(self, time_source=the_reactor):
     self.__interesting_objects = {}
     CollectionState.__init__(self, self.__interesting_objects, dynamic=True)
     self.__objects = {}
     self.__expiry_times = {}
     self.__time_source = IReactorTime(time_source)
예제 #10
0
 def __init__(self):
     self.__aircraft = {}
     self.__interesting_aircraft = {}
     CollectionState.__init__(self,
                              self.__interesting_aircraft,
                              dynamic=True)
예제 #11
0
 def __init__(self):
     self.table = CellDict(dynamic=True)
     CollectionState.__init__(self, self.table)
예제 #12
0
 def __init__(self):
     self.table = {}
     CollectionState.__init__(self, self.table, dynamic=True)
예제 #13
0
파일: roots.py 프로젝트: kpreid/shinysdr
 def __init__(self, cap_table, unserializer):
     self.__cap_table = cap_table
     self.__unserializer = unserializer
     CollectionState.__init__(self, cap_table._get_cap_dict())
예제 #14
0
 def __init__(self, cap_table, unserializer):
     self.__cap_table = cap_table
     self.__unserializer = unserializer
     CollectionState.__init__(self, cap_table._get_cap_dict())
예제 #15
0
파일: top.py 프로젝트: kkndyu/shinysdr
 def __init__(self, table, top):
     CollectionState.__init__(self, table, dynamic=True)
     self.__top = top
예제 #16
0
 def __init__(self):
     self.table = {}
     CollectionState.__init__(self, self.table, dynamic=True)
예제 #17
0
 def __init__(self):
     self.table = CellDict(dynamic=True)
     CollectionState.__init__(self, self.table)
예제 #18
0
 def __init__(self):
     self.__stations = {}
     CollectionState.__init__(self, self.__stations, dynamic=True)