Interface RetrievedPacket
interface RetrievedPacket {
cmd: "Retrieved";
keys: {
[key: string]: JSONSerializable;
};
[p: string]: JSONSerializable;
}
cmd: "Retrieved";
keys: {
[key: string]: JSONSerializable;
};
[p: string]: JSONSerializable;
}
Indexable
Additional arguments that were passed in from GetPacket.
Properties
Readonly
cmd
cmd
Readonly
keys
A key-value collection containing all the values for the keys requested in the GetPacket.
Sent to clients as a response to a GetPacket.
Additional arguments added to the GetPacket that triggered this RetrievedPacket will also be passed along.