com.tomakehurst.crashlab.NoOpCompetionHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crash-lab Show documentation
Show all versions of crash-lab Show documentation
A Java resilience testing library
The newest version!
package com.tomakehurst.crashlab;
import com.ning.http.client.AsyncCompletionHandler;
import com.ning.http.client.Response;
public class NoOpCompetionHandler extends AsyncCompletionHandler {
@Override
public Response onCompleted(Response response) throws Exception {
return response;
}
}