Skip to main content

API

InteractorConfiguration​

Declaration
class InteractorConfiguration {
get int buffersCount;
get int bufferSize;
get int ringSize;
get int ringFlags;
get double delayRandomizationFactor;
get int cqePeekCount;
get int cqeWaitCount;
get Duration cqeWaitTimeout;
get Duration baseDelay;
get Duration maxDelay;
get int memorySlabSize;
get int memoryPreallocationSize;
get int memoryQuotaSize;
}

Parameters​

NameTypeDescriptionDefaults
buffersCountintMax buffers available in buffers pool4096
bufferSizeintMax buffer size available in buffers pool4096
ringSizeintSize of io_uring16384
ringFlagsintFlags of io_uring0
baseDelayDurationUsed for event loop delay calculationmicroseconds: 10
maxDelayDurationUsed for event loop delay calculationseconds: 5
delayRandomizationFactordoubleUsed for event loop delay calculation0.25
cqePeekCountintHow many cqes should be taken on each loop iteration1024
cqeWaitCountintHow many cqes should be waited on each loop iteration1
cqeWaitTimeoutDurationHow long cqes should be waited on each loop iterationmilliseconds: 1
memorySlabSizeintUsed for payload and data pools see64 * 1024
memoryPreallocationSizeintUsed for payload and data pools see64 * 1024
memoryQuotaSizeintUsed for payload and data pools see16 * 1024 * 1024

InteractorDefaults​

Declaration
class InteractorDefaults {
static InteractorConfiguration worker() => InteractorConfiguration(/* parameters */);
}