receiver/objectify¶
-
module
receiver.objectify¶ Objectifying message receiver.
Receives
protocol.Packetinstances. Converts to plain object. Passes on to next receiver. Received messages are assumed valid.Provide protocol definition and next receiver.
-
class
receiver.objectify.ObjectifyReceiver(protocol, nextReceiver)¶ Arguments: - protocol (protobufjs.Root) – Protocol definition.
- nextReceiver (Receiver) – Receiver to deliver message to.
-
receiver.objectify.ObjectifyReceiver.submit(message)¶ Arguments: - message (protocol.Packet) – Packet to convert to object. Assumed valid.
-
class