示例#1
0
 def __init__(self, *classes):
     """
     :param *classes: The type or types of the objects we expect to
         (de)serialize.
     """
     Argument.__init__(self)
     self._expected_classes = classes
示例#2
0
 def __init__(self, *classes):
     """
     :param *classes: The type or types of the objects we expect to
         (de)serialize.
     """
     Argument.__init__(self)
     self._expected_classes = classes
示例#3
0
 def __init__(self, *classes):
     """
     :param *classes: The type or types of the objects we expect to
         (de)serialize. Only immutable types should be used if encoding
         caching will be enabled.
     """
     Argument.__init__(self)
     self._expected_classes = classes
示例#4
0
 def __init__(self, *classes):
     """
     :param *classes: The type or types of the objects we expect to
         (de)serialize. Only immutable types should be used if encoding
         caching will be enabled.
     """
     Argument.__init__(self)
     self._expected_classes = classes
示例#5
0
 def __init__(self, optional=False, maxStringPartSize=8192):
     Argument.__init__(self, optional)
     self.maxStringPartSize = maxStringPartSize
示例#6
0
 def __init__(self):
     _Argument.__init__(self, optional=True)
示例#7
0
 def __init__(self, cls):
     """
     :param cls: The type of the objects we expect to (de)serialize.
     """
     Argument.__init__(self)
     self._expected_class = cls
示例#8
0
 def __init__(self, cls):
     """
     :param cls: The type of the objects we expect to (de)serialize.
     """
     Argument.__init__(self)
     self._expected_class = cls