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

org.gridkit.jvmtool.ThreadDumpSource Maven / Gradle / Ivy

There is a newer version: 0.23
Show newest version
package org.gridkit.jvmtool;

import java.util.List;

import org.gridkit.jvmtool.cli.CommandLauncher;

import com.beust.jcommander.Parameter;

public class ThreadDumpSource extends AbstractThreadDumpSource {

    @Parameter(names={"-f", "--file"}, required = false, variableArity=true, description="Path to stack dump file")
    private List files;
    
    
    public ThreadDumpSource(CommandLauncher host) {
        super(host);
    }


	@Override
	protected List inputFiles() {
		return files;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy