Interface RetrievedPacket

Sent to clients as a response to a GetPacket.

Additional arguments added to the GetPacket that triggered this RetrievedPacket will also be passed along.

interface RetrievedPacket {
    cmd: "Retrieved";
    keys: {
        [key: string]: JSONSerializable;
    };
    [p: string]: JSONSerializable;
}

Indexable

Properties

Properties

cmd
keys: {
    [key: string]: JSONSerializable;
}

A key-value collection containing all the values for the keys requested in the GetPacket.