diff options
author | kruall <kruall@ydb.tech> | 2023-12-13 23:04:16 +0300 |
---|---|---|
committer | kruall <kruall@ydb.tech> | 2023-12-14 00:22:34 +0300 |
commit | d2c7b8c29f41cae3585e77f5356af32abe42f487 (patch) | |
tree | dd5313d16cf696e683a0cac81091e57602a72bfe | |
parent | 91ecc69b22a78d3e823a1f6c9475c149e3dfaa36 (diff) | |
download | ydb-d2c7b8c29f41cae3585e77f5356af32abe42f487.tar.gz |
Fix build, KIKIMR-18440
-rw-r--r-- | ydb/library/actors/core/executor_thread.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ydb/library/actors/core/executor_thread.h b/ydb/library/actors/core/executor_thread.h index 2e325a7143..750eac126f 100644 --- a/ydb/library/actors/core/executor_thread.h +++ b/ydb/library/actors/core/executor_thread.h @@ -44,6 +44,17 @@ namespace NActors { ui32 eventsPerMailbox = DEFAULT_EVENTS_PER_MAILBOX); TExecutorThread(TWorkerId workerId, + TWorkerId cpuId, + TActorSystem* actorSystem, + IExecutorPool* executorPool, + TMailboxTable* mailboxTable, + const TString& threadName, + TDuration timePerMailbox = DEFAULT_TIME_PER_MAILBOX, + ui32 eventsPerMailbox = DEFAULT_EVENTS_PER_MAILBOX) + : TExecutorThread(workerId, cpuId, actorSystem, executorPool, mailboxTable, nullptr, threadName, timePerMailbox, eventsPerMailbox) + {} + + TExecutorThread(TWorkerId workerId, TActorSystem* actorSystem, IExecutorPool* executorPool, TMailboxTable* mailboxTable, @@ -55,6 +66,16 @@ namespace NActors { {} TExecutorThread(TWorkerId workerId, + TActorSystem* actorSystem, + IExecutorPool* executorPool, + TMailboxTable* mailboxTable, + const TString& threadName, + TDuration timePerMailbox = DEFAULT_TIME_PER_MAILBOX, + ui32 eventsPerMailbox = DEFAULT_EVENTS_PER_MAILBOX) + : TExecutorThread(workerId, 0, actorSystem, executorPool, mailboxTable, nullptr, threadName, timePerMailbox, eventsPerMailbox) + {} + + TExecutorThread(TWorkerId workerId, TActorSystem* actorSystem, TExecutorThreadCtx *threadCtx, i16 poolCount, |