diff options
author | Cthulhu <cthulhu@yandex-team.ru> | 2022-02-10 16:47:44 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:44 +0300 |
commit | bcb3e9d0eb2a8188a6a9fe0907a8949ce4881a4e (patch) | |
tree | 09f7d6526ac5428ea224cd3cf7bd79809d8e6a07 /library/cpp/lwtrace/custom_action.h | |
parent | 7b82c914c2f468dd50a208ff6a00d38ee7f0018f (diff) | |
download | ydb-bcb3e9d0eb2a8188a6a9fe0907a8949ce4881a4e.tar.gz |
Restoring authorship annotation for Cthulhu <cthulhu@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/lwtrace/custom_action.h')
-rw-r--r-- | library/cpp/lwtrace/custom_action.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/library/cpp/lwtrace/custom_action.h b/library/cpp/lwtrace/custom_action.h index 92a3c66b84..85445b57e5 100644 --- a/library/cpp/lwtrace/custom_action.h +++ b/library/cpp/lwtrace/custom_action.h @@ -1,16 +1,16 @@ -#pragma once - -#include "probe.h" +#pragma once + +#include "probe.h" #include <library/cpp/lwtrace/protos/lwtrace.pb.h> - + #include <util/generic/hash.h> #include <functional> namespace NLWTrace { class TSession; - + // Custom action can save any stuff (derived from IResource) in TSession object // IMPORTANT: Derived class will be used from multiple threads! (see example3) class IResource: public TAtomicRefCount<IResource> { @@ -60,7 +60,7 @@ namespace NLWTrace { return Destructive; } }; - + // Factory to produce custom action executors class TCustomActionFactory { public: |