planetiler/src/main/java/com/onthegomap/flatmap/FlatMapConfig.java

16 wiersze
281 B
Java

package com.onthegomap.flatmap;
import com.onthegomap.flatmap.monitoring.Stats;
import java.time.Duration;
import org.locationtech.jts.geom.Envelope;
public record FlatMapConfig(
Profile profile,
Envelope envelope,
int threads,
Stats stats,
Duration logInterval
) {
}