* @param recordClass The class object of the records returned by the given upstream Provider.
*/
public AvroSpecificToStringList(Provider<R> provider, Class<R> recordClass) {
super(provider,
SpecificData.get().getSchema(recordClass),
new StringListEncoder(),
new SpecificDatumTextWriter<>(recordClass));
}