1 package com.atlassian.jira.rest.client.internal.async;
2
3 import com.atlassian.httpclient.api.HttpClient;
4
5 /**
6 * Atlassian HttpClient with destroy exposed.
7 */
8 public interface DisposableHttpClient extends HttpClient {
9
10 void destroy() throws Exception;
11
12 }