All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zendesk.maxwell.monitoring.MaxwellDiagnosticContext Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.zendesk.maxwell.monitoring;

import java.util.List;

public class MaxwellDiagnosticContext {

	public final Config config;
	public final List diagnostics;

	public MaxwellDiagnosticContext(Config config, List diagnostics) {
		this.config = config;
		this.diagnostics = diagnostics;
	}

	public static class Config {
		public boolean enable;
		public long timeout;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy