AvroMetrics.java org::apache::iceberg::avro::AvroMetrics org::apache::iceberg::avro /* *LicensedtotheApacheSoftwareFoundation(ASF)underone *ormorecontributorlicenseagreements.SeetheNOTICEfile *distributedwiththisworkforadditionalinformation *regardingcopyrightownership.TheASFlicensesthisfile *toyouundertheApacheLicense,Version2.0(the *"License");youmaynotusethisfileexceptincompliance *withtheLicense.YoumayobtainacopyoftheLicenseat * *http://www.apache.org/licenses/LICENSE-2.0 * *Unlessrequiredbyapplicablelaworagreedtoinwriting, *softwaredistributedundertheLicenseisdistributedonan *"ASIS"BASIS,WITHOUTWARRANTIESORCONDITIONSOFANY *KIND,eitherexpressorimplied.SeetheLicenseforthe *specificlanguagegoverningpermissionsandlimitations *undertheLicense. */ packageorg.apache.iceberg.avro; importorg.apache.avro.io.DatumWriter; importorg.apache.iceberg.Metrics; importorg.apache.iceberg.MetricsConfig; importorg.apache.iceberg.Schema; publicclassAvroMetrics{ privateAvroMetrics(){} staticMetricsfromWriter( DatumWriter<?>datumWriter, Schemaschema, longnumRecords, MetricsConfiginputMetricsConfig){ //TODOwillpopulateinfollowingPRsifdatumwriterisaMetricsAwareDatumWriter returnnewMetrics(numRecords,null,null,null,null); } }