FunctionCodec

Inheritance diagram of FunctionCodec
class FunctionCodec(func_name)[source]

Bases: taurus.core.util.codecs.Codec

A generic function codec

decode(data, *args, **kwargs)[source]

decodes the given data. This method is abstract an therefore must be implemented in the subclass.

Parameters:data (sequence[str, obj]) – a sequence of two elements where the first item is the encoding format of the second item object
Return type:sequence[str, obj]
Returns:a sequence of two elements where the first item is the encoding format of the second item object
Raise:NotImplementedError
encode(data, *args, **kwargs)[source]

encodes the given data. This method is abstract an therefore must be implemented in the subclass.

Parameters:data (sequence[str, obj]) – a sequence of two elements where the first item is the encoding format of the second item object
Return type:sequence[str, obj]
Returns:a sequence of two elements where the first item is the encoding format of the second item object
Raise:NotImplementedError