public void run() throws IOException, TTransportException {
ConsoleReader cReader = new ConsoleReader();
cReader.addCompletor(new FlumeCompletor());
String line;
while (!done && (line = cReader.readLine(getPrompt())) != null) {
try {
executeLine(line);
} catch (RuntimeException r) {
System.out.println("RuntimeException caught: " + r.getMessage());
}