public static enum HystrixObservableCollapser.Scope extends java.lang.Enum<HystrixObservableCollapser.Scope> implements com.netflix.hystrix.collapser.RequestCollapserFactory.Scope
HystrixRequestContext
will be collapsed.
Typically this means that requests within a single user-request (ie. HTTP request) are collapsed. No interaction with other user requests. 1 queue per user request.
Modifier and Type | Method and Description |
---|---|
static HystrixObservableCollapser.Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HystrixObservableCollapser.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HystrixObservableCollapser.Scope GLOBAL
public static final HystrixObservableCollapser.Scope REQUEST
public static HystrixObservableCollapser.Scope[] values()
for (HystrixObservableCollapser.Scope c : HystrixObservableCollapser.Scope.values()) System.out.println(c);
public static HystrixObservableCollapser.Scope valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null