com.googlecode.openbox.server.log.monitor.ServerLogMonitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ssh Show documentation
Show all versions of ssh Show documentation
This is remote linux SSH module
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);
}