All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.daioware.net.http.client.EmptyHandler Maven / Gradle / Ivy

There is a newer version: 1.1.3-RELEASE
Show newest version
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