Example #1
0
	def __init__(self):
		APIResponse.__init__(self)
		self.putChild('room', SimpleFunction(self.room_message))
		self.putChild('user', SimpleFunction(self.user_message))
Example #2
0
 def __init__(self):
     APIResponse.__init__(self)
     self.putChild("hello", SimpleFunction(self.hello))
Example #3
0
	def putChild(self, name, child):
		self.apichildren[name] = child
		APIResponse.putChild(self, name, child)
Example #4
0
	def __init__(self):
		APIResponse.__init__(self)
		self.putChild("hello", SimpleFunction(self.hello))
Example #5
0
	def __init__(self, f):
		self.render = f
		APIResponse.__init__(self)
Example #6
0
	def __init__(self):
		APIResponse.__init__(self)
		self.apichildren = {}
Example #7
0
	def __init__(self):
		APIResponse.__init__(self)
		self.putChild('request', KeyRequest())
		self.putChild('response', KeyListener())
		self.putChild('info', KeyInfo())
Example #8
0
 def __init__(self):
     APIResponse.__init__(self)
     self.putChild('room', SimpleFunction(self.room_message))
     self.putChild('user', SimpleFunction(self.user_message))
Example #9
0
 def putChild(self, name, child):
     self.apichildren[name] = child
     APIResponse.putChild(self, name, child)
Example #10
0
 def __init__(self):
     APIResponse.__init__(self)
     self.apichildren = {}
Example #11
0
 def __init__(self, f):
     self.render = f
     APIResponse.__init__(self)