I have this configuration:
batchingOptions: new()
{
BatchSizeLimit = 100,
Period = TimeSpan.FromMinutes(10),
EagerlyEmitFirstEvent = true
}
I expect, that first message will be sended immediately due settings EagerlyEmitFirstEvent = true. But I receive first message after 10 minutes.