aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/neh/factory.h
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2023-06-30 14:22:26 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2023-06-30 14:22:26 +0300
commit93a8bbb01d574d1c55ea51172eca469785df35e3 (patch)
tree3b3ed5e54e4c7b931b2e2c48409d14cb54d918e3 /library/cpp/neh/factory.h
parentaaf08878eedef2e56302f84ec81213ce801f5b16 (diff)
downloadydb-93a8bbb01d574d1c55ea51172eca469785df35e3.tar.gz
Intermediate changes
Diffstat (limited to 'library/cpp/neh/factory.h')
-rw-r--r--library/cpp/neh/factory.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/library/cpp/neh/factory.h b/library/cpp/neh/factory.h
index 17bebef8ed0..c3ea3eed052 100644
--- a/library/cpp/neh/factory.h
+++ b/library/cpp/neh/factory.h
@@ -12,10 +12,6 @@ namespace NNeh {
}
virtual IRequesterRef CreateRequester(IOnRequest* cb, const TParsedLocation& loc) = 0;
virtual THandleRef ScheduleRequest(const TMessage& msg, IOnRecv* fallback, TServiceStatRef&) = 0;
- virtual THandleRef ScheduleAsyncRequest(const TMessage& msg, IOnRecv* fallback, TServiceStatRef& statRef, bool useAsyncSendRequest = false) {
- Y_UNUSED(useAsyncSendRequest);
- return ScheduleRequest(msg, fallback, statRef);
- }
virtual TStringBuf Scheme() const noexcept = 0;
virtual bool SetOption(TStringBuf name, TStringBuf value) {
Y_UNUSED(name);