Encodes an AMF3 data stream.
|
__init__(self,
*args,
**kwargs)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
writeClass(self,
*args,
**kwargs)
Classes cannot be serialised. |
source code
|
|
|
writeUndefined(self,
*args,
**kwargs)
Writes an pyamf.Undefined value to the stream. |
source code
|
|
|
writeNull(self,
*args,
**kwargs)
Writes a null value to the stream. |
source code
|
|
|
writeBoolean(self,
n,
**kwargs)
Writes a Boolean to the stream. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
writeDate(self,
n,
use_references=True,
**kwargs)
Writes a datetime instance to the stream. |
source code
|
|
|
writeList(self,
n,
use_references=True,
use_proxies=None)
Writes a tuple , set or list to
the stream. |
source code
|
|
|
|
|
|
|
|
|
|
|
writeXML(self,
n,
use_references=True,
use_proxies=None)
Writes a XML string to the data stream. |
source code
|
|
Inherited from BaseEncoder :
writeFunc
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|