Custom codecs¶
-
class
isc.codecs.AbstractCodec[source]¶ Abstract base class for implementing codecs.
“Codec” is a class that tells ISC how to encode & decode message payloads.
Server can support multiple codecs while client can use only one at a time.
Default codec is
PickleCodec. You can implement your own codec by extendingAbstractCodecand overriding its methods.Important: Don’t forget that both client and server should have the codec installed!