summaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/interface/io.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'yt/cpp/mapreduce/interface/io.cpp')
-rw-r--r--yt/cpp/mapreduce/interface/io.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/interface/io.cpp b/yt/cpp/mapreduce/interface/io.cpp
index bbd417893c4..d3b4621c235 100644
--- a/yt/cpp/mapreduce/interface/io.cpp
+++ b/yt/cpp/mapreduce/interface/io.cpp
@@ -28,6 +28,16 @@ bool IReaderImplBase::IsRawReaderExhausted() const
Y_ABORT("Unimplemented");
}
+void IReaderImplBase::Abort()
+{
+ Y_ABORT("Unimplemented");
+}
+
+bool IReaderImplBase::IsAborted() const
+{
+ return false;
+}
+
////////////////////////////////////////////////////////////////////////////////
namespace NDetail {