mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-18 14:22:22 +00:00
15 lines
365 B
Plaintext
15 lines
365 B
Plaintext
/**
|
|
* # Redis message
|
|
*
|
|
* Holder datum for redis messages
|
|
*
|
|
* This datum is used for caching messages that SSredis tries to
|
|
* publish before it has connected. It is not used for any subscribed
|
|
* channel handling.
|
|
*/
|
|
/datum/redis_message
|
|
/// Destination channel for this message
|
|
var/channel = null
|
|
/// Message for that channel
|
|
var/message = null
|