1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 15:22:53 +02:00
- Added `setBulkReadSize(ulong)` to `ConnectionInfo`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-18 11:50:54 +02:00
parent 2ab86df2c7
commit aa83f1a1bb

View File

@ -73,6 +73,17 @@ public struct ConnectionInfo
return this.bulkReadSize; return this.bulkReadSize;
} }
/**
* Sets the read-dequeue size
*
* Params:
* bytes = the number of bytes to dequeue at a time
*/
public void setBulkReadSize(ulong bytes)
{
this.bulkReadSize = bytes;
}
/** /**
* Get the address of the endpoint server * Get the address of the endpoint server
* *