Home
last modified time | relevance | path

Searched defs:ExecutionAttribute (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/aws-sdk-java-v2/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/
H A DExecutionAttribute.java51 public final class ExecutionAttribute<T> { class
62 public ExecutionAttribute(String name) { in ExecutionAttribute() method in ExecutionAttribute
66 private ExecutionAttribute(String name, ValueStorage<T> storage) { in ExecutionAttribute() method in ExecutionAttribute
208 T get(Map<ExecutionAttribute<?>, Object> attributes); in get()
213 void set(Map<ExecutionAttribute<?>, Object> attributes, T value); in set()
218 void setIfAbsent(Map<ExecutionAttribute<?>, Object> attributes, T value); in setIfAbsent()
227 public T get(Map<ExecutionAttribute<?>, Object> attributes) { in get()
232 public void set(Map<ExecutionAttribute<?>, Object> attributes, T value) { in set()
237 public void setIfAbsent(Map<ExecutionAttribute<?>, Object> attributes, T value) { in setIfAbsent()
259 public T get(Map<ExecutionAttribute<?>, Object> attributes) { in get()
[all …]
H A DExecutionAttributes.java44 protected ExecutionAttributes(Map<? extends ExecutionAttribute<?>, ?> attributes) { in ExecutionAttributes()
191 … public ExecutionAttributes.Builder putAll(Map<? extends ExecutionAttribute<?>, ?> attributes) { in putAll()