1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 09:03:29 +02:00

ConnectionInfo

- Added `getMode()` and `setMode(ChecksMode)`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-21 13:49:36 +02:00
parent 5bcbdf72cd
commit e833cf7a93

View File

@ -109,6 +109,16 @@ public shared struct ConnectionInfo
this.mode = ChecksMode.EASY;
}
public ChecksMode getMode()
{
return this.mode;
}
public void setMode(ChecksMode mode)
{
this.mode = mode;
}
/**
* Retrieve the read-dequeue size
*