1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 13:22:52 +02:00
- Added documentation to the `SenderThread`

Receiver

- Added documentation to the `ReceiveThread`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-18 11:09:42 +02:00
parent fc63aaae49
commit 9e68d94120
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,6 @@
/**
* Receive queue management
*/
module birchwood.client.receiver;
import core.thread : Thread, dur;
@ -17,6 +20,11 @@ import std.string : indexOf;
import birchwood.client.events : PongEvent, IRCEvent;
import std.string : cmp;
/**
* Manages the receive queue and performs
* message parsing and event triggering
* based on said messages
*/
public final class ReceiverThread : Thread
{
/**

View File

@ -1,3 +1,6 @@
/**
* Send queue management
*/
module birchwood.client.sender;
import core.thread : Thread, dur;
@ -11,6 +14,9 @@ import libsnooze;
import birchwood.client;
/**
* Manages the send queue
*/
public final class SenderThread : Thread
{
/**