Category Archives: Java
When Callable<V> is not enough
At work today I ended up having to write this because Callable<V> wasn’t flexible enough for what I needed:
public interface Operation<V, E extends Throwable> {
V execute() throws E;
}
…would love to see this (as well as a Pair<A,B> class) in a future cut of Java.
Spring Web Services
Arjen Poutsma recently announced the first public release of Spring Web Services. Once it hits RC status, I'm going to look into it for revetkn.com, since I'd like to aggregate a bunch of useful web services.
You can check out a very high-level overview of SWS in the form of Arjen's slides from [...]
Posted in Java Leave a comment
Introducing RestFB, a Java Facebook REST API Client