- CacheInvocationContext<A extends java.lang.annotation.Annotation> - Class in com.netflix.hystrix.contrib.javanica.cache
-
Runtime information about an intercepted method invocation for a method
annotated with
CacheResult,
CacheRemove annotations.
- CacheInvocationContext(A, MethodExecutionAction, Object, Method, Object...) - Constructor for class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationContext
-
Constructor to create CacheInvocationContext based on passed parameters.
- CacheInvocationContextFactory - Class in com.netflix.hystrix.contrib.javanica.cache
-
- CacheInvocationContextFactory() - Constructor for class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationContextFactory
-
- CacheInvocationParameter - Class in com.netflix.hystrix.contrib.javanica.cache
-
A parameter to an intercepted method invocation.
- CacheInvocationParameter(Class<?>, Object, Annotation[], int) - Constructor for class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationParameter
-
- CacheKey - Annotation Type in com.netflix.hystrix.contrib.javanica.cache.annotation
-
Marks a method argument as part of the cache key.
- cacheKeyMethod(Method) - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder.Builder
-
- CacheRemove - Annotation Type in com.netflix.hystrix.contrib.javanica.cache.annotation
-
Marks methods used to invalidate cache of a command.
- cacheRemoveAnnotationPointcut() - Method in class com.netflix.hystrix.contrib.javanica.aop.aspectj.HystrixCacheAspect
-
- cacheRemoveInvocationContext(CacheInvocationContext<CacheRemove>) - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilder.Builder
-
- CacheResult - Annotation Type in com.netflix.hystrix.contrib.javanica.cache.annotation
-
Marks a methods that results should be cached for a Hystrix command.
- cacheResultInvocationContext(CacheInvocationContext<CacheResult>) - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilder.Builder
-
- cancel(boolean) - Method in class com.netflix.hystrix.contrib.javanica.command.AsyncResult
-
- cancel(boolean) - Method in class com.netflix.hystrix.contrib.javanica.utils.FutureDecorator
-
- CIRCUIT_BREAKER_ENABLED - Static variable in class com.netflix.hystrix.contrib.javanica.conf.HystrixPropertiesManager
-
Command circuit breaker properties.
- CIRCUIT_BREAKER_ERROR_THRESHOLD_PERCENTAGE - Static variable in class com.netflix.hystrix.contrib.javanica.conf.HystrixPropertiesManager
-
- CIRCUIT_BREAKER_FORCE_CLOSED - Static variable in class com.netflix.hystrix.contrib.javanica.conf.HystrixPropertiesManager
-
- CIRCUIT_BREAKER_FORCE_OPEN - Static variable in class com.netflix.hystrix.contrib.javanica.conf.HystrixPropertiesManager
-
- CIRCUIT_BREAKER_REQUEST_VOLUME_THRESHOLD - Static variable in class com.netflix.hystrix.contrib.javanica.conf.HystrixPropertiesManager
-
- CIRCUIT_BREAKER_SLEEP_WINDOW_IN_MILLISECONDS - Static variable in class com.netflix.hystrix.contrib.javanica.conf.HystrixPropertiesManager
-
- clearCache(CacheInvocationContext<CacheRemove>) - Method in class com.netflix.hystrix.contrib.javanica.cache.HystrixRequestCacheManager
-
Clears the cache for a given cacheKey context.
- Closure - Class in com.netflix.hystrix.contrib.javanica.command.closure
-
Contains method and instance of anonymous class which implements
ClosureCommand interface.
- Closure() - Constructor for class com.netflix.hystrix.contrib.javanica.command.closure.Closure
-
- Closure(Method, Object) - Constructor for class com.netflix.hystrix.contrib.javanica.command.closure.Closure
-
- closure(Closure) - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder.Builder
-
- ClosureCommand<T> - Interface in com.netflix.hystrix.contrib.javanica.command
-
This interface is used to perform command logic within an anonymous class and basically used as wrapper for some logic.
- ClosureFactory - Interface in com.netflix.hystrix.contrib.javanica.command.closure
-
Factory to create instances of
Closure class.
- collapsedRequests(Collection<HystrixCollapser.CollapsedRequest<ResponseType, Object>>) - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilder.Builder
-
Sets collapsed requests.
- collapserExecutionType(ExecutionType) - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder.Builder
-
- collapserKey(String) - Method in class com.netflix.hystrix.contrib.javanica.command.GenericSetterBuilder.Builder
-
- collapserProperties(List<HystrixProperty>) - Method in class com.netflix.hystrix.contrib.javanica.command.GenericSetterBuilder.Builder
-
- com.netflix.hystrix.contrib.javanica.annotation - package com.netflix.hystrix.contrib.javanica.annotation
-
- com.netflix.hystrix.contrib.javanica.aop.aspectj - package com.netflix.hystrix.contrib.javanica.aop.aspectj
-
- com.netflix.hystrix.contrib.javanica.cache - package com.netflix.hystrix.contrib.javanica.cache
-
- com.netflix.hystrix.contrib.javanica.cache.annotation - package com.netflix.hystrix.contrib.javanica.cache.annotation
-
- com.netflix.hystrix.contrib.javanica.collapser - package com.netflix.hystrix.contrib.javanica.collapser
-
- com.netflix.hystrix.contrib.javanica.command - package com.netflix.hystrix.contrib.javanica.command
-
- com.netflix.hystrix.contrib.javanica.command.closure - package com.netflix.hystrix.contrib.javanica.command.closure
-
- com.netflix.hystrix.contrib.javanica.conf - package com.netflix.hystrix.contrib.javanica.conf
-
- com.netflix.hystrix.contrib.javanica.exception - package com.netflix.hystrix.contrib.javanica.exception
-
- com.netflix.hystrix.contrib.javanica.utils - package com.netflix.hystrix.contrib.javanica.utils
-
- com.netflix.hystrix.contrib.javanica.utils.ajc - package com.netflix.hystrix.contrib.javanica.utils.ajc
-
- CommandAction - Interface in com.netflix.hystrix.contrib.javanica.command
-
Simple action to encapsulate some logic to process it in a Hystrix command.
- commandAction(CommandAction) - Method in class com.netflix.hystrix.contrib.javanica.command.CommandActions.Builder
-
- CommandActionExecutionException - Exception in com.netflix.hystrix.contrib.javanica.exception
-
This exception is used to wrap original exceptions to push through javanica infrastructure.
- CommandActionExecutionException(Throwable) - Constructor for exception com.netflix.hystrix.contrib.javanica.exception.CommandActionExecutionException
-
Creates exceptions instance with cause is original exception.
- CommandActionExecutionException() - Constructor for exception com.netflix.hystrix.contrib.javanica.exception.CommandActionExecutionException
-
Default constructor.
- CommandActions - Class in com.netflix.hystrix.contrib.javanica.command
-
Wrapper for command actions combines different actions together.
- CommandActions(CommandActions.Builder) - Constructor for class com.netflix.hystrix.contrib.javanica.command.CommandActions
-
- commandActions(CommandActions) - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilder.Builder
-
- CommandActions.Builder - Class in com.netflix.hystrix.contrib.javanica.command
-
- CommandCollapser - Class in com.netflix.hystrix.contrib.javanica.collapser
-
Collapses multiple requests into a single HystrixCommand execution based
on a time window and optionally a max batch size.
- CommandCollapser(MetaHolder) - Constructor for class com.netflix.hystrix.contrib.javanica.collapser.CommandCollapser
-
Constructor with parameters.
- CommandExecutionAction - Class in com.netflix.hystrix.contrib.javanica.command
-
Action to execute a Hystrix command.
- CommandExecutionAction(HystrixInvokable, MetaHolder) - Constructor for class com.netflix.hystrix.contrib.javanica.command.CommandExecutionAction
-
Constructor with parameters.
- CommandExecutor - Class in com.netflix.hystrix.contrib.javanica.command
-
- CommandExecutor() - Constructor for class com.netflix.hystrix.contrib.javanica.command.CommandExecutor
-
- commandKey(String) - Method in class com.netflix.hystrix.contrib.javanica.command.GenericSetterBuilder.Builder
-
- commandKey(String, String) - Method in class com.netflix.hystrix.contrib.javanica.command.GenericSetterBuilder.Builder
-
Deprecated.
- commandProperties(List<HystrixProperty>) - Method in class com.netflix.hystrix.contrib.javanica.command.GenericSetterBuilder.Builder
-
- CommonUtils - Class in com.netflix.hystrix.contrib.javanica.utils
-
Created by dmgcodevil.
- construct() - Method in class com.netflix.hystrix.contrib.javanica.command.GenericObservableCommand
-
.
- CORE_SIZE - Static variable in class com.netflix.hystrix.contrib.javanica.conf.HystrixPropertiesManager
-
- create(MetaHolder) - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilderFactory
-
- create(MetaHolder, Collection<HystrixCollapser.CollapsedRequest<ResponseType, Object>>) - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilderFactory
-
- create(MetaHolder) - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandFactory
-
- createArgsForFallback(MetaHolder, Throwable) - Static method in class com.netflix.hystrix.contrib.javanica.utils.CommonUtils
-
- createArgsForFallback(Object[], MetaHolder, Throwable) - Static method in class com.netflix.hystrix.contrib.javanica.utils.CommonUtils
-
- createCacheRemoveInvocationContext(MetaHolder) - Static method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationContextFactory
-
- createCacheResultInvocationContext(MetaHolder) - Static method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationContextFactory
-
- createClosure(MetaHolder, Method, Object, Object...) - Method in class com.netflix.hystrix.contrib.javanica.command.closure.AbstractClosureFactory
-
- createClosure(MetaHolder, Method, Object, Object...) - Method in interface com.netflix.hystrix.contrib.javanica.command.closure.ClosureFactory
-
Creates closure in accordance with method return type.
- createCommand(Collection<HystrixCollapser.CollapsedRequest<Object, Object>>) - Method in class com.netflix.hystrix.contrib.javanica.collapser.CommandCollapser
-
Creates batch command.
- createDelayed(MetaHolder) - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandFactory
-
- generateCacheKey(CacheInvocationContext<? extends Annotation>) - Method in class com.netflix.hystrix.contrib.javanica.cache.HystrixCacheKeyGenerator
-
- GenericCommand - Class in com.netflix.hystrix.contrib.javanica.command
-
Implementation of AbstractHystrixCommand which returns an Object as result.
- GenericCommand(HystrixCommandBuilder) - Constructor for class com.netflix.hystrix.contrib.javanica.command.GenericCommand
-
- GenericObservableCommand - Class in com.netflix.hystrix.contrib.javanica.command
-
Generic class for all observable commands executed within javanica context.
- GenericObservableCommand(HystrixCommandBuilder) - Constructor for class com.netflix.hystrix.contrib.javanica.command.GenericObservableCommand
-
- GenericSetterBuilder - Class in com.netflix.hystrix.contrib.javanica.command
-
Builder for Hystrix Setters: HystrixCommand.Setter, HystrixObservableCommand.Setter, HystrixCollapser.Setter.
- GenericSetterBuilder(GenericSetterBuilder.Builder) - Constructor for class com.netflix.hystrix.contrib.javanica.command.GenericSetterBuilder
-
- GenericSetterBuilder.Builder - Class in com.netflix.hystrix.contrib.javanica.command
-
- get() - Method in class com.netflix.hystrix.contrib.javanica.command.AsyncResult
-
- get(long, TimeUnit) - Method in class com.netflix.hystrix.contrib.javanica.command.AsyncResult
-
- get() - Method in class com.netflix.hystrix.contrib.javanica.utils.FutureDecorator
-
- get(long, TimeUnit) - Method in class com.netflix.hystrix.contrib.javanica.utils.FutureDecorator
-
- getActionName() - Method in interface com.netflix.hystrix.contrib.javanica.command.CommandAction
-
Gets action name.
- getActionName() - Method in class com.netflix.hystrix.contrib.javanica.command.CommandExecutionAction
-
Gets action name.
- getActionName() - Method in class com.netflix.hystrix.contrib.javanica.command.LazyCommandExecutionAction
-
Gets action name.
- getActionName() - Method in class com.netflix.hystrix.contrib.javanica.command.MethodExecutionAction
-
Gets action name.
- getAjcMethod() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getAjcMethod(Class<?>, String, AjcUtils.AdviceType, Class<?>...) - Static method in class com.netflix.hystrix.contrib.javanica.utils.ajc.AjcUtils
-
- getAjcMethodAroundAdvice(Class<?>, String, Class<?>...) - Static method in class com.netflix.hystrix.contrib.javanica.utils.ajc.AjcUtils
-
- getAjcMethodAroundAdvice(Class<?>, MethodSignature) - Static method in class com.netflix.hystrix.contrib.javanica.utils.ajc.AjcUtils
-
- getAjcMethodAroundAdvice(Class<?>, Method) - Static method in class com.netflix.hystrix.contrib.javanica.utils.ajc.AjcUtils
-
- getAllParameters() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationContext
-
Gets all method parameters.
- getAnnotation(JoinPoint, Class<T>) - Static method in class com.netflix.hystrix.contrib.javanica.utils.AopUtils
-
- getAnnotation(Class<?>, Class<T>) - Static method in class com.netflix.hystrix.contrib.javanica.utils.AopUtils
-
- getAnnotations() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationParameter
-
Returns an immutable Set of all Annotations on this method parameter, never null.
- getArgs() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getArgs() - Method in class com.netflix.hystrix.contrib.javanica.command.MethodExecutionAction
-
- getCacheAnnotation() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationContext
-
- getCacheKey() - Method in class com.netflix.hystrix.contrib.javanica.cache.DefaultHystrixGeneratedCacheKey
-
- getCacheKey() - Method in interface com.netflix.hystrix.contrib.javanica.cache.HystrixGeneratedCacheKey
-
Key to be used for request caching.
- getCacheKey() - Method in class com.netflix.hystrix.contrib.javanica.command.AbstractHystrixCommand
-
.
- getCacheKey() - Method in class com.netflix.hystrix.contrib.javanica.command.GenericObservableCommand
-
.
- getCacheKeyAnnotation() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationParameter
-
- getCacheKeyMethod() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationContext
-
Gets action that invokes cache key method, the result of execution is used as cache key.
- getCacheKeyMethod() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getCacheKeyMethodName() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationContext
-
Gets method name to be used to get a key for request caching.
- getCacheRemoveInvocationContext() - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilder
-
- getCacheResultInvocationContext() - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilder
-
- getClosure() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getClosureMethod() - Method in class com.netflix.hystrix.contrib.javanica.command.closure.Closure
-
- getClosureObj() - Method in class com.netflix.hystrix.contrib.javanica.command.closure.Closure
-
- getCollapsedRequests() - Method in class com.netflix.hystrix.contrib.javanica.command.AbstractHystrixCommand
-
Gets collapsed requests.
- getCollapsedRequests() - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilder
-
- getCollapserExecutionType() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getCollapserKey() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getCollapserProperties() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getCommandAction() - Method in class com.netflix.hystrix.contrib.javanica.command.AbstractHystrixCommand
-
Gets command action.
- getCommandAction() - Method in class com.netflix.hystrix.contrib.javanica.command.CommandActions
-
- getCommandActions() - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilder
-
- getCommandGroupKey() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getCommandIgnoreExceptions() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getCommandKey() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getCommandProperties() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getDeclaredMethod(Class<?>, String, Class<?>...) - Static method in class com.netflix.hystrix.contrib.javanica.utils.AopUtils
-
Gets declared method from specified type by mame and parameters types.
- getDefaultCollapserKey() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getDefaultCommandKey() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getDefaultGroupKey() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getDefaultProperties() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getDefaultThreadPoolKey() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getExecutionType() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationContext
-
Gets execution type of cache key action.
- getExecutionType() - Method in class com.netflix.hystrix.contrib.javanica.command.AbstractHystrixCommand
-
- getExecutionType(Class<?>) - Static method in enum com.netflix.hystrix.contrib.javanica.command.ExecutionType
-
Gets execution type for specified class type.
- getExecutionType() - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilder
-
- getExecutionType() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getExecutionType() - Method in class com.netflix.hystrix.contrib.javanica.utils.FallbackMethod
-
- getFallback() - Method in class com.netflix.hystrix.contrib.javanica.command.AbstractHystrixCommand
-
.
- getFallback() - Method in class com.netflix.hystrix.contrib.javanica.command.BatchHystrixCommand
-
- getFallback() - Method in class com.netflix.hystrix.contrib.javanica.command.GenericCommand
-
The fallback is performed whenever a command execution fails.
- getFallbackAction() - Method in class com.netflix.hystrix.contrib.javanica.command.AbstractHystrixCommand
-
Gets fallback action.
- getFallbackAction() - Method in class com.netflix.hystrix.contrib.javanica.command.CommandActions
-
- getFallbackExecutionType() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getFallbackMethod() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getFallbackMethod(Class<?>, Method) - Method in class com.netflix.hystrix.contrib.javanica.utils.MethodProvider
-
- getFallbackMethod(Class<?>, Method, boolean) - Method in class com.netflix.hystrix.contrib.javanica.utils.MethodProvider
-
Gets fallback method for command method.
- getHystrixCollapser() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getHystrixCommand() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getIgnoreExceptions() - Method in class com.netflix.hystrix.contrib.javanica.command.AbstractHystrixCommand
-
Gets exceptions types which should be ignored.
- getIgnoreExceptions() - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilder
-
- getInstance() - Static method in class com.netflix.hystrix.contrib.javanica.cache.HystrixCacheKeyGenerator
-
- getInstance() - Static method in class com.netflix.hystrix.contrib.javanica.cache.HystrixRequestCacheManager
-
- getInstance() - Static method in class com.netflix.hystrix.contrib.javanica.command.closure.AsyncClosureFactory
-
- getInstance() - Static method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilderFactory
-
- getInstance() - Static method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandFactory
-
- getInstance() - Static method in class com.netflix.hystrix.contrib.javanica.utils.MethodProvider
-
- getJoinPoint() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getKeyParameters() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationContext
-
- getMetaHolder() - Method in interface com.netflix.hystrix.contrib.javanica.command.CommandAction
-
- getMetaHolder() - Method in class com.netflix.hystrix.contrib.javanica.command.CommandExecutionAction
-
- getMetaHolder() - Method in class com.netflix.hystrix.contrib.javanica.command.LazyCommandExecutionAction
-
- getMetaHolder() - Method in class com.netflix.hystrix.contrib.javanica.command.MethodExecutionAction
-
- getMethod() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationContext
-
Gets intercepted method that annotated with caching annotation.
- getMethod() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getMethod() - Method in class com.netflix.hystrix.contrib.javanica.command.MethodExecutionAction
-
- getMethod() - Method in class com.netflix.hystrix.contrib.javanica.utils.FallbackMethod
-
- getMethod(Class<?>, String, Class<?>...) - Static method in class com.netflix.hystrix.contrib.javanica.utils.MethodProvider
-
Gets method by name and parameters types using reflection,
if the given type doesn't contain required method then continue applying this method for all super classes up to Object class.
- getMethodFromTarget(JoinPoint) - Static method in class com.netflix.hystrix.contrib.javanica.utils.AopUtils
-
Gets a Method object from target object (not proxy class).
- getMethodFromTarget(JoinPoint, String) - Static method in class com.netflix.hystrix.contrib.javanica.utils.AopUtils
-
Gets a Method object from target object by specified method name.
- getMethodInfo(Method) - Static method in class com.netflix.hystrix.contrib.javanica.utils.AopUtils
-
- getObj() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getObject() - Method in class com.netflix.hystrix.contrib.javanica.command.MethodExecutionAction
-
- getObservableExecutionMode() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getParameterTypes() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getParameterTypes(JoinPoint) - Static method in class com.netflix.hystrix.contrib.javanica.utils.AopUtils
-
Gets parameter types of the join point.
- getPosition() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationParameter
-
Gets index of the parameter in the original parameter array.
- getPostfix() - Method in enum com.netflix.hystrix.contrib.javanica.utils.ajc.AjcUtils.AdviceType
-
- getProxyObj() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getRaiseHystrixExceptions() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getRawType() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationParameter
-
Gets the parameter type as declared on the method.
- getRequestArgument() - Method in class com.netflix.hystrix.contrib.javanica.collapser.CommandCollapser
- getSetterBuilder() - Method in class com.netflix.hystrix.contrib.javanica.command.HystrixCommandBuilder
-
- getTarget() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationContext
-
- getThreadPoolKey() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getThreadPoolProperties() - Method in class com.netflix.hystrix.contrib.javanica.command.MetaHolder
-
- getValue() - Method in class com.netflix.hystrix.contrib.javanica.cache.CacheInvocationParameter
-
Gets the parameter value
- getWeavingMode() - Static method in class com.netflix.hystrix.contrib.javanica.utils.EnvUtils
-
- groupKey(String) - Method in class com.netflix.hystrix.contrib.javanica.command.GenericSetterBuilder.Builder
-
- groupKey(String, String) - Method in class com.netflix.hystrix.contrib.javanica.command.GenericSetterBuilder.Builder
-
- validateReturnType(Method) - Method in class com.netflix.hystrix.contrib.javanica.utils.FallbackMethod
-
- valueOf(String) - Static method in enum com.netflix.hystrix.contrib.javanica.annotation.HystrixException
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.netflix.hystrix.contrib.javanica.annotation.ObservableExecutionMode
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.netflix.hystrix.contrib.javanica.aop.aspectj.WeavingMode
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.netflix.hystrix.contrib.javanica.command.ExecutionType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.netflix.hystrix.contrib.javanica.utils.ajc.AjcUtils.AdviceType
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum com.netflix.hystrix.contrib.javanica.annotation.HystrixException
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.netflix.hystrix.contrib.javanica.annotation.ObservableExecutionMode
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.netflix.hystrix.contrib.javanica.aop.aspectj.WeavingMode
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.netflix.hystrix.contrib.javanica.command.ExecutionType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum com.netflix.hystrix.contrib.javanica.utils.ajc.AjcUtils.AdviceType
-
Returns an array containing the constants of this enum type, in
the order they are declared.