- java.lang.Object
-
- jdk.incubator.http.MultiMapResult<V>
-
- Type Parameters:
V- the response body type for all responses
- All Implemented Interfaces:
Map<HttpRequest,CompletableFuture<HttpResponse<V>>>
public class MultiMapResult<V> extends Object implements Map<HttpRequest,CompletableFuture<HttpResponse<V>>>
AMapcontaining the result of a HTTP/2 request and multi-response.
Incubating Feature. Will be removed in a future release.This is one possible implementation of the aggregate result type
<U>returned fromHttpClient.sendAsync(HttpRequest,MultiProcessor). The map is indexed byHttpRequestand each value is aCompletableFuture<HttpResponse<V>>A
MultiMapResultis obtained from an invocation such as the one shown below:CompletableFuture<MultiMapResult<V>>HttpClient.sendAsync(MultiProcessor.asMap(Function))
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Removes all of the mappings from this map (optional operation).booleancontainsKey(Object key)Returnstrueif this map contains a mapping for the specified key.booleancontainsValue(Object value)Returnstrueif this map maps one or more keys to the specified value.Set<Map.Entry<HttpRequest,CompletableFuture<HttpResponse<V>>>>entrySet()Returns aSetview of the mappings contained in this map.CompletableFuture<HttpResponse<V>>get(Object key)Returns the value to which the specified key is mapped, ornullif this map contains no mapping for the key.booleanisEmpty()Returnstrueif this map contains no key-value mappings.Set<HttpRequest>keySet()Returns aSetview of the keys contained in this map.CompletableFuture<HttpResponse<V>>put(HttpRequest key, CompletableFuture<HttpResponse<V>> value)Associates the specified value with the specified key in this map (optional operation).voidputAll(Map<? extends HttpRequest,? extends CompletableFuture<HttpResponse<V>>> m)Copies all of the mappings from the specified map to this map (optional operation).CompletableFuture<HttpResponse<V>>remove(Object key)Removes the mapping for a key from this map if it is present (optional operation).intsize()Returns the number of key-value mappings in this map.Collection<CompletableFuture<HttpResponse<V>>>values()Returns aCollectionview of the values contained in this map.
-
-
-
Method Detail
-
size
public int size()
Description copied from interface:MapReturns the number of key-value mappings in this map. If the map contains more thanInteger.MAX_VALUEelements, returnsInteger.MAX_VALUE.- Specified by:
sizein interfaceMap<HttpRequest,CompletableFuture<HttpResponse<V>>>- Returns:
- the number of key-value mappings in this map
-
isEmpty
public boolean isEmpty()
Description copied from interface:MapReturnstrueif this map contains no key-value mappings.- Specified by:
isEmptyin interfaceMap<HttpRequest,CompletableFuture<HttpResponse<V>>>- Returns:
trueif this map contains no key-value mappings
-
containsKey
public boolean containsKey(Object key)
Description copied from interface:MapReturnstrueif this map contains a mapping for the specified key. More formally, returnstrueif and only if this map contains a mapping for a keyksuch thatObjects.equals(key, k). (There can be at most one such mapping.)- Specified by:
containsKeyin interfaceMap<HttpRequest,CompletableFuture<HttpResponse<V>>>- Parameters:
key- key whose presence in this map is to be tested- Returns:
trueif this map contains a mapping for the specified key
-
containsValue
public boolean containsValue(Object value)
Description copied from interface:MapReturnstrueif this map maps one or more keys to the specified value. More formally, returnstrueif and only if this map contains at least one mapping to a valuevsuch thatObjects.equals(value, v). This operation will probably require time linear in the map size for most implementations of theMapinterface.- Specified by:
containsValuein interfaceMap<HttpRequest,CompletableFuture<HttpResponse<V>>>- Parameters:
value- value whose presence in this map is to be tested- Returns:
trueif this map maps one or more keys to the specified value
-
get
public CompletableFuture<HttpResponse<V>> get(Object key)
Description copied from interface:MapReturns the value to which the specified key is mapped, ornullif this map contains no mapping for the key.More formally, if this map contains a mapping from a key
kto a valuevsuch thatObjects.equals(key, k), then this method returnsv; otherwise it returnsnull. (There can be at most one such mapping.)If this map permits null values, then a return value of
nulldoes not necessarily indicate that the map contains no mapping for the key; it's also possible that the map explicitly maps the key tonull. ThecontainsKeyoperation may be used to distinguish these two cases.- Specified by:
getin interfaceMap<HttpRequest,CompletableFuture<HttpResponse<V>>>- Parameters:
key- the key whose associated value is to be returned- Returns:
- the value to which the specified key is mapped, or
nullif this map contains no mapping for the key
-
put
public CompletableFuture<HttpResponse<V>> put(HttpRequest key, CompletableFuture<HttpResponse<V>> value)
Description copied from interface:MapAssociates the specified value with the specified key in this map (optional operation). If the map previously contained a mapping for the key, the old value is replaced by the specified value. (A mapmis said to contain a mapping for a keykif and only ifm.containsKey(k)would returntrue.)- Specified by:
putin interfaceMap<HttpRequest,CompletableFuture<HttpResponse<V>>>- Parameters:
key- key with which the specified value is to be associatedvalue- value to be associated with the specified key- Returns:
- the previous value associated with
key, ornullif there was no mapping forkey. (Anullreturn can also indicate that the map previously associatednullwithkey, if the implementation supportsnullvalues.)
-
remove
public CompletableFuture<HttpResponse<V>> remove(Object key)
Description copied from interface:MapRemoves the mapping for a key from this map if it is present (optional operation). More formally, if this map contains a mapping from keykto valuevsuch thatObjects.equals(key, k), that mapping is removed. (The map can contain at most one such mapping.)Returns the value to which this map previously associated the key, or
nullif the map contained no mapping for the key.If this map permits null values, then a return value of
nulldoes not necessarily indicate that the map contained no mapping for the key; it's also possible that the map explicitly mapped the key tonull.The map will not contain a mapping for the specified key once the call returns.
- Specified by:
removein interfaceMap<HttpRequest,CompletableFuture<HttpResponse<V>>>- Parameters:
key- key whose mapping is to be removed from the map- Returns:
- the previous value associated with
key, ornullif there was no mapping forkey.
-
putAll
public void putAll(Map<? extends HttpRequest,? extends CompletableFuture<HttpResponse<V>>> m)
Description copied from interface:MapCopies all of the mappings from the specified map to this map (optional operation). The effect of this call is equivalent to that of callingput(k, v)on this map once for each mapping from keykto valuevin the specified map. The behavior of this operation is undefined if the specified map is modified while the operation is in progress.- Specified by:
putAllin interfaceMap<HttpRequest,CompletableFuture<HttpResponse<V>>>- Parameters:
m- mappings to be stored in this map
-
clear
public void clear()
Description copied from interface:MapRemoves all of the mappings from this map (optional operation). The map will be empty after this call returns.- Specified by:
clearin interfaceMap<HttpRequest,CompletableFuture<HttpResponse<V>>>
-
keySet
public Set<HttpRequest> keySet()
Description copied from interface:MapReturns aSetview of the keys contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's ownremoveoperation), the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via theIterator.remove,Set.remove,removeAll,retainAll, andclearoperations. It does not support theaddoraddAlloperations.- Specified by:
keySetin interfaceMap<HttpRequest,CompletableFuture<HttpResponse<V>>>- Returns:
- a set view of the keys contained in this map
-
values
public Collection<CompletableFuture<HttpResponse<V>>> values()
Description copied from interface:MapReturns aCollectionview of the values contained in this map. The collection is backed by the map, so changes to the map are reflected in the collection, and vice-versa. If the map is modified while an iteration over the collection is in progress (except through the iterator's ownremoveoperation), the results of the iteration are undefined. The collection supports element removal, which removes the corresponding mapping from the map, via theIterator.remove,Collection.remove,removeAll,retainAllandclearoperations. It does not support theaddoraddAlloperations.- Specified by:
valuesin interfaceMap<HttpRequest,CompletableFuture<HttpResponse<V>>>- Returns:
- a collection view of the values contained in this map
-
entrySet
public Set<Map.Entry<HttpRequest,CompletableFuture<HttpResponse<V>>>> entrySet()
Description copied from interface:MapReturns aSetview of the mappings contained in this map. The set is backed by the map, so changes to the map are reflected in the set, and vice-versa. If the map is modified while an iteration over the set is in progress (except through the iterator's ownremoveoperation, or through thesetValueoperation on a map entry returned by the iterator) the results of the iteration are undefined. The set supports element removal, which removes the corresponding mapping from the map, via theIterator.remove,Set.remove,removeAll,retainAllandclearoperations. It does not support theaddoraddAlloperations.- Specified by:
entrySetin interfaceMap<HttpRequest,CompletableFuture<HttpResponse<V>>>- Returns:
- a set view of the mappings contained in this map
-
-