com.king.platform.net.http.Headers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of king-http-client Show documentation
Show all versions of king-http-client Show documentation
A asyncronous http client built ontop of netty.
package com.king.platform.net.http;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
public interface Headers {
String get(CharSequence name);
List getAll(CharSequence name);
List> entries();
boolean contains(CharSequence name);
int size();
Set names();
Iterator> iterator();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy