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

com.googlecode.openbox.server.log.monitor.ServerLogMonitor Maven / Gradle / Ivy

The newest version!
package com.googlecode.openbox.server.log.monitor;

import com.googlecode.openbox.server.log.ServerLog;

public interface ServerLogMonitor {

	ServerLogMonitor addServerLogProvider(ServerLogProvider serverLogProvider);

	ServerLogMonitor addServerLog(ServerLog serverLog);

	ServerLogMonitor addServerLogHandler(ServerLogHandler handler);
	
	ServerLogMonitor setParallelCount(int parallelCount) ;
	
	T triggerActions() throws Exception;

	T execute() throws Exception;

	String[] getLogFilterKeys(T t);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy