Gili wrote: > : > I'm also looking for a way to use a more generic argument for > readLine(). Right now I reference StringBuilder explicitly because: An alternative is to simply return the line as a String, as in: Future<String> result = channel.readLine(); -Alan.