aboutsummaryrefslogtreecommitdiff
path: root/src/org/gnunet/util/HelperProcess.java
blob: 5b0458f4c603fc4cdcc386001cfc6b645188ed19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.gnunet.util;

/**
 * A helper process is a process that can be started, shut down and communicated with asynchronously.
 *
 * @author Florian Dold
 */
public class HelperProcess {

    public void HelperProcess(String name, String... args) {

    }

    public void readLine() {

    }

    public void write(String s) {

    }
}