use of com.linkedin.databus.client.ChunkedBodyReadableByteChannel in project databus by linkedin.
the class StreamHttpResponseProcessor method startResponse.
@Override
public void startResponse(HttpResponse response) throws Exception {
_decorated = new ChunkedBodyReadableByteChannel();
_registerResponseVersionHdr = response.getHeader(DatabusHttpHeaders.DBUS_CLIENT_RELAY_PROTOCOL_VERSION_HDR);
super.startResponse(response);
}
use of com.linkedin.databus.client.ChunkedBodyReadableByteChannel in project databus by linkedin.
the class BootstrapStartScnHttpResponseProcessor method startResponse.
@Override
public void startResponse(HttpResponse response) throws Exception {
_decorated = new ChunkedBodyReadableByteChannel();
super.startResponse(response);
}
Aggregations