예제 #1
0
파일: method_frame.py 프로젝트: ask/haigha
 def __init__(self, channel_id, class_id, method_id, args=None):
   Frame.__init__(self, channel_id)
   self._class_id = class_id
   self._method_id = method_id
   self._args = args
예제 #2
0
 def __init__(self, channel_id, class_id, weight, size, properties={}):
     Frame.__init__(self, channel_id)
     self._class_id = class_id
     self._weight = weight
     self._size = size
     self._properties = properties
예제 #3
0
 def __init__(self, channel_id, class_id, weight, size, properties={}):
     Frame.__init__(self, channel_id)
     self._class_id = class_id
     self._weight = weight
     self._size = size
     self._properties = properties
예제 #4
0
 def __init__(self, channel_id, payload):
   Frame.__init__(self, channel_id)
   self._payload = payload
예제 #5
0
 def __init__(self, *args, **kwargs):
   Frame.__init__(self, *args, **kwargs)
예제 #6
0
 def __init__(self, channel_id, class_id, method_id, args=None):
     Frame.__init__(self, channel_id)
     self._class_id = class_id
     self._method_id = method_id
     self._args = args