Skip to content

Commit 2999825

Browse files
authored
[refactoring] Do not include actorsystem.h into actor.h (#10394)
1 parent 5d0627c commit 2999825

File tree

14 files changed

+16
-3
lines changed

14 files changed

+16
-3
lines changed

ydb/core/external_sources/object_storage/s3_fetcher.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include "s3_fetcher.h"
22

3+
#include <ydb/library/actors/core/actorsystem.h>
34
#include <ydb/library/actors/core/hfunc.h>
45

56
namespace NKikimr::NExternalSource::NObjectStorage {

ydb/core/fq/libs/shared_resources/db_exec.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22

3+
#include <ydb/library/actors/core/actorsystem.h>
34
#include <ydb/library/db_pool/db_pool.h>
45

56
#include <ydb/core/fq/libs/common/debug_info.h>

ydb/core/kqp/federated_query/kqp_federated_query_actors.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
#include <ydb/library/actors/core/actor.h>
77

8+
#include <library/cpp/threading/future/future.h>
9+
810

911
namespace NKikimr::NKqp {
1012

ydb/core/wrappers/abstract.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#pragma once
22

3+
#include <ydb/library/actors/core/actorsystem.h>
4+
35
#include <ydb/core/protos/flat_scheme_op.pb.h>
46
#include <ydb/core/wrappers/events/abstract.h>
57
#include <ydb/core/wrappers/events/common.h>

ydb/library/actors/core/actor.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#pragma once
22

3-
#include "actorsystem.h"
43
#include "event.h"
54
#include "executor_thread.h"
65
#include "mailbox.h"

ydb/library/actors/core/actor_bootstrapped.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#pragma once
22

3-
#include "actorsystem.h"
43
#include "actor.h"
54
#include "events.h"
65
#include <util/generic/noncopyable.h>

ydb/library/actors/core/executor_thread.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
#include "defs.h"
44
#include "event.h"
5-
#include "callstack.h"
65
#include "probes.h"
76
#include "thread_context.h"
87
#include "worker_context.h"

ydb/library/actors/core/invoke.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22

3+
#include "actorsystem.h"
34
#include "actor_bootstrapped.h"
45
#include "events.h"
56
#include "event_local.h"

ydb/library/actors/cppcoro/task_actor.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#include "task_actor.h"
22
#include "await_callback.h"
33
#include <ydb/library/actors/core/actor.h>
4+
#include <ydb/library/actors/core/actorsystem.h>
45
#include <ydb/library/actors/core/hfunc.h>
6+
#include <ydb/library/actors/core/callstack.h>
57

68
namespace NActors {
79

ydb/library/yql/dq/actors/spilling/channel_storage_actor.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
#include "spilling_counters.h"
44

5+
#include <library/cpp/threading/future/future.h>
6+
57
#include <ydb/library/yql/dq/runtime/dq_channel_storage.h>
68
#include "ydb/library/yql/dq/common/dq_common.h"
79

0 commit comments

Comments
 (0)