Base AMF encoder.
|
|
__init__(self,
*args,
**kwargs)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
_write_type(self,
obj,
**kwargs)
Subclasses should override this and all write[type] functions |
source code
|
|
|
|
writeNull(self,
obj,
**kwargs)
Subclasses should override this and all write[type] functions |
source code
|
|
|
|
writeBytes(self,
obj,
**kwargs)
Subclasses should override this and all write[type] functions |
source code
|
|
|
|
writeString(self,
obj,
**kwargs)
Subclasses should override this and all write[type] functions |
source code
|
|
|
|
writeBoolean(self,
obj,
**kwargs)
Subclasses should override this and all write[type] functions |
source code
|
|
|
|
writeNumber(self,
obj,
**kwargs)
Subclasses should override this and all write[type] functions |
source code
|
|
|
|
writeList(self,
obj,
**kwargs)
Subclasses should override this and all write[type] functions |
source code
|
|
|
|
writeUndefined(self,
obj,
**kwargs)
Subclasses should override this and all write[type] functions |
source code
|
|
|
|
writeDate(self,
obj,
**kwargs)
Subclasses should override this and all write[type] functions |
source code
|
|
|
|
writeXML(self,
obj,
**kwargs)
Subclasses should override this and all write[type] functions |
source code
|
|
|
|
writeObject(self,
obj,
**kwargs)
Subclasses should override this and all write[type] functions |
source code
|
|
|
|
|
|
|
writeGenerator(self,
gen)
Iterates over a generator object and encodes all that is returned. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from _Codec:
buildContext
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|