com.fitbur.github.dockerjava.jaxrs.async.GETCallbackNotifier Maven / Gradle / Ivy
/*
* Created on 23.06.2015
*/
package com.fitbur.github.dockerjava.jaxrs.async;
import javax.ws.rs.client.Invocation.Builder;
import javax.ws.rs.core.Response;
import com.fitbur.github.dockerjava.api.async.ResultCallback;
import com.fitbur.github.dockerjava.core.async.ResponseStreamProcessor;
/**
*
* @author marcus
*
*/
public class GETCallbackNotifier extends AbstractCallbackNotifier {
public GETCallbackNotifier(ResponseStreamProcessor responseStreamProcessor, ResultCallback resultCallback,
Builder requestBuilder) {
super(responseStreamProcessor, resultCallback, requestBuilder);
}
protected Response response() {
return requestBuilder.get(Response.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy