Class HystrixCommandEvent
Inheritance
System.Object
HystrixCommandEvent
Assembly: Steeltoe.CircuitBreaker.HystrixBase.dll
Syntax
public abstract class HystrixCommandEvent : object, IHystrixEvent
Constructors
|
Edit this page
View Source
HystrixCommandEvent(IHystrixCommandKey, IHystrixThreadPoolKey)
Declaration
protected HystrixCommandEvent(IHystrixCommandKey commandKey, IHystrixThreadPoolKey threadPoolKey)
Parameters
Properties
|
Edit this page
View Source
CommandKey
Declaration
public virtual IHystrixCommandKey CommandKey { get; }
Property Value
|
Edit this page
View Source
DidCommandExecute
Declaration
public abstract bool DidCommandExecute { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
FilterActualExecutions
Declaration
public static Func<HystrixCommandEvent, bool> FilterActualExecutions { get; }
Property Value
|
Edit this page
View Source
FilterCompletionsOnly
Declaration
public static Func<HystrixCommandEvent, bool> FilterCompletionsOnly { get; }
Property Value
|
Edit this page
View Source
IsCommandCompletion
Declaration
public abstract bool IsCommandCompletion { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
IsExecutedInThread
Declaration
public abstract bool IsExecutedInThread { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
IsExecutionStart
Declaration
public abstract bool IsExecutionStart { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
IsResponseThreadPoolRejected
Declaration
public abstract bool IsResponseThreadPoolRejected { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
ThreadPoolKey
Declaration
public virtual IHystrixThreadPoolKey ThreadPoolKey { get; }
Property Value
Implements