Amazon Web Services reveals a managed Kafka service for streaming data
geekwire.com2 pointsby jnericks0 comments
// this hack is gross
final String[] val = new String[1];
Callable func = () -> val[0] = "Hello";
func.call();
System.out.print(val[0]);