| Package | Description |
|---|---|
| com.linecorp.armeria.common.logging |
| Modifier and Type | Method and Description |
|---|---|
static RequestLogProperty |
RequestLogProperty.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestLogProperty[] |
RequestLogProperty.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static Set<RequestLogProperty> |
RequestLogProperty.requestProperties()
Returns the
RequestLogPropertys for requests. |
static Set<RequestLogProperty> |
RequestLogProperty.responseProperties()
Returns the
RequestLogPropertys for responses. |
| Modifier and Type | Method and Description |
|---|---|
RequestLog |
RequestLogAccess.ensureAvailable(RequestLogProperty... properties)
Returns the
RequestLog that is guaranteed to have all the specified RequestLogPropertys. |
RequestLog |
RequestLogAccess.ensureAvailable(RequestLogProperty property)
Returns the
RequestLog that is guaranteed to have the specified RequestLogProperty. |
default boolean |
RequestLogAccess.isAvailable(RequestLogProperty... properties)
Returns
true if all of the specified RequestLogPropertys are available. |
boolean |
RequestLogAccess.isAvailable(RequestLogProperty property)
Returns
true if the specified RequestLogProperty is available. |
CompletableFuture<RequestLog> |
RequestLogAccess.whenAvailable(RequestLogProperty... properties)
Returns a
CompletableFuture which will be completed when all the specified
RequestLogPropertys are collected. |
CompletableFuture<RequestLog> |
RequestLogAccess.whenAvailable(RequestLogProperty property)
Returns a
CompletableFuture which will be completed when the specified
RequestLogProperty is collected. |
| Modifier and Type | Method and Description |
|---|---|
RequestLog |
RequestLogAccess.ensureAvailable(Iterable<RequestLogProperty> properties)
Returns the
RequestLog that is guaranteed to have all the specified RequestLogPropertys. |
default boolean |
RequestLogAccess.isAvailable(Iterable<RequestLogProperty> properties)
Returns
true if all of the specified RequestLogPropertys are available. |
CompletableFuture<RequestLog> |
RequestLogAccess.whenAvailable(Iterable<RequestLogProperty> properties)
Returns a
CompletableFuture which will be completed when all the specified
RequestLogPropertys are collected. |
Copyright © 2020 LeanCloud. All rights reserved.