aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/task/util/process/ProcessFactory.java
blob: 3fa994e0f39f514aea0e8d414edd3ffa06a18998 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.vespa.hosted.node.admin.task.util.process;

/**
 * @author hakonhall
 */
public interface ProcessFactory {
    ChildProcess2 spawn(CommandLine commandLine);
}