com.daioware.net.http.client.EmptyHandler Maven / Gradle / Ivy
package com.daioware.net.http.client;
public class EmptyHandler implements ResponseHandler{
public static final EmptyHandler DEFAULT_INSTANCE=new EmptyHandler();
@Override
public void open(HttpSender sender) throws HandlingException {
}
@Override
public void close() throws HandlingException {
}
@Override
public void handleHeaders(byte[] bytes, int offset, int length) throws HandlingException {
}
@Override
public void handleBody(byte[] bytes, int offset, int length) throws HandlingException {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy