1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 07:23:14 +02:00
- Added a field of type `Event` to hold a libsnooze object representing when a new message has been received and is to be processed

Sender

- Added a field of type `Event` to hold a libsnooze object representing when a new message is to be sent and is to be processed
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-08 17:40:22 +02:00
parent 8e0854e5b5
commit ccff4017d6
2 changed files with 12 additions and 2 deletions

View File

@ -8,5 +8,10 @@ import libsnooze;
public final class ReceiverThread : Thread public final class ReceiverThread : Thread
{ {
/**
* The libsnooze event to await on which
* when we wake up signals a new message
* to be processed and received
*/
private Event receiveEvent;
} }

View File

@ -8,5 +8,10 @@ import libsnooze;
public final class SenderThread : Thread public final class SenderThread : Thread
{ {
/**
* The libsnooze event to await on which
* when we wake up signals a new message
* to be processed and sent
*/
private Event receiveEvent;
} }