summaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/yson/consumer.cpp
blob: 90438e541eff4c99b98c46ee8c5e05cbd711c47c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "consumer.h"

#include <library/cpp/yt/yson_string/string.h>

namespace NYT::NYson {

////////////////////////////////////////////////////////////////////////////////

void IYsonConsumer::OnRaw(const TYsonStringBuf& yson) 
{ 
    OnRaw(yson.AsStringBuf(), yson.GetType());
}

////////////////////////////////////////////////////////////////////////////////

} // namespace NYT::NYson