Exemplo n.º 1
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
Exemplo n.º 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
Exemplo n.º 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
Exemplo n.º 4
0
 def __init__(self, channel_id, payload):
   Frame.__init__(self, channel_id)
   self._payload = payload
Exemplo n.º 5
0
 def __init__(self, *args, **kwargs):
   Frame.__init__(self, *args, **kwargs)
Exemplo n.º 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