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

com.mageddo.common.resteasy.ClientCloser Maven / Gradle / Ivy

package com.mageddo.common.resteasy;

import javax.ws.rs.client.Client;
import java.util.function.Consumer;

public class ClientCloser {
	public static void with(Client client, Consumer consumer){
		try {
			consumer.accept(client);
		} finally {
			client.close();
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy