// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) by respective owners including Yahoo!, Microsoft, and // individual contributors. All rights reserved. Released under a BSD // license as described in the file LICENSE. // // -------------------------------------------------------------------------------------------------------------------- using System.Collections.Generic; namespace VW.Serializer { /// /// Optimization interface for JsonConverter holding one or more independently parseable JSON fragments. /// /// /// This avoids string copying. /// public interface IVowpalWabbitJsonConverter { /// /// List of independently parseable JSON fragments. /// IEnumerable JsonFragments(object value); } }