Added NotificationReply class to represent an incoming notification message

This commit is contained in:
Tristan 🅱. Kildaire 2020-09-24 20:31:15 +02:00
parent 485995bfe3
commit 4623cbd304
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
/**
* NotificationReply
*
* When a tag is reserved and a message is received
* with such a tag then one of these is generated
* and added to the queue of notification replies.
*
* Multiple of these will be made and enqueued even
* if they have the same tag (duplicates allowed).
*
* This facilitates a notification system if one
* wants to use tristanable for that purpose (this
* is because notifications _just happen_ and have
* no prior request)
*/
module tristanable.notifications;
public class NotificationReply
{
}